)
...
```
diff --git a/content/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning.md b/content/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning.md
index 7ef55ec4a7..d687f7760c 100644
--- a/content/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning.md
+++ b/content/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning.md
@@ -46,7 +46,16 @@ However, there can be situations where you want to scan for other secret pattern
## Regular expression syntax for custom patterns
-Custom patterns for {% data variables.product.prodname_secret_scanning %} are specified as regular expressions. {% data variables.product.prodname_secret_scanning_caps %} uses the [Hyperscan library](https://github.com/intel/hyperscan) and only supports Hyperscan regex constructs, which are a subset of PCRE syntax. Hyperscan option modifiers are not supported. For more information on Hyperscan pattern constructs, see "[Pattern support](http://intel.github.io/hyperscan/dev-reference/compilation.html#pattern-support)" in the Hyperscan documentation.
+Custom patterns for {% data variables.product.prodname_secret_scanning %} are specified as one or more regular expressions.
+
+- **Secret format:** an expression that describes the format of the secret itself.
+- **Before secret:** an expression that describes the characters that come before the secret. By default, this is set to `\A|[^0-9A-Za-z]` which means that the secret must be at the start of a line or be preceded by a non-alphanumeric character.
+- **After secret:** an expression that describes the characters that come after the secret. By default, this is set to `\z|[^0-9A-Za-z]` which means that the secret must be followed by a new line or a non-alphanumeric character.
+- **Additional match requirements:** one or more optional expressions that the secret itself must or must not match.
+
+For simple tokens you will usually only need to specify a secret format. The other fields provide flexibility so that you can specify more complex secrets without creating complex regular expressions. For an example of a custom pattern, see "[Example of a custom pattern specified using additional requirements](#example-of-a-custom-pattern-specified-using-additional-requirements)" below.
+
+{% data variables.product.prodname_secret_scanning_caps %} uses the [Hyperscan library](https://github.com/intel/hyperscan) and only supports Hyperscan regex constructs, which are a subset of PCRE syntax. Hyperscan option modifiers are not supported. For more information on Hyperscan pattern constructs, see "[Pattern support](http://intel.github.io/hyperscan/dev-reference/compilation.html#pattern-support)" in the Hyperscan documentation.
## Defining a custom pattern for a repository
@@ -61,6 +70,35 @@ Before defining a custom pattern, you must ensure that {% data variables.product
After your pattern is created, {% data reusables.secret-scanning.secret-scanning-process %} For more information on viewing {% data variables.product.prodname_secret_scanning %} alerts, see "[Managing alerts from {% data variables.product.prodname_secret_scanning %}](/code-security/secret-security/managing-alerts-from-secret-scanning)."
+### Example of a custom pattern specified using additional requirements
+
+A company has an internal token with five characteristics. They use the different fields to specify how to identify tokens as follows:
+
+| **Characteristic** | **Field and regular expression** |
+|----------------|------------------------------|
+| Length between 5 and 10 characters | Secret format: `[$#%@AA-Za-z0-9]{5,10}` |
+| Does not end in a `.` | After secret: `[^\.]` |
+| Contains numbers and uppercase letters | Additional requirements: secret must match `[A-Z]` and `[0-9]` |
+| Does not include more than one lowercase letter in a row | Additional requirements: secret must not match `[a-z]{2,}` |
+| Contains one of `$%@!` | Additional requirements: secret must match `[$%@!]` |
+
+These tokens would match the custom pattern described above:
+
+```
+a9@AAfT! # Secret string match: a9@AAfT
+ee95GG@ZA942@aa # Secret string match: @ZA942@a
+a9@AA!ee9 # Secret string match: a9@AA
+```
+
+These strings would not match the custom pattern described above:
+
+```
+a9@AA.!
+a@AAAAA
+aa9@AA!ee9
+aAAAe9
+```
+
## Defining a custom pattern for an organization
Before defining a custom pattern, you must ensure that you enable {% data variables.product.prodname_secret_scanning %} for the {% ifversion fpt or ghec %}private{% endif %} repositories that you want to scan in your organization. To enable {% data variables.product.prodname_secret_scanning %} on all {% ifversion fpt or ghec %}private{% endif %} repositories in your organization, see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)."
diff --git a/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/configuring-notifications-for-vulnerable-dependencies.md b/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/configuring-notifications-for-vulnerable-dependencies.md
index f0d3791232..c65d85db9f 100644
--- a/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/configuring-notifications-for-vulnerable-dependencies.md
+++ b/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/configuring-notifications-for-vulnerable-dependencies.md
@@ -32,7 +32,7 @@ When {% data variables.product.prodname_dependabot %} detects vulnerable depende
{% ifversion ghes or ghae-issue-4864 %}
By default, if your enterprise owner has configured email for notifications on your enterprise, you will receive {% data variables.product.prodname_dependabot_alerts %} by email.
-Enterprise owners can also enable {% data variables.product.prodname_dependabot_alerts %} without notifications. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} on your enterprise account](/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account)."
+Enterprise owners can also enable {% data variables.product.prodname_dependabot_alerts %} without notifications. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} for your enterprise](/admin/configuration/configuring-github-connect/enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise)."
{% endif %}
## Configuring notifications for {% data variables.product.prodname_dependabot_alerts %}
diff --git a/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review.md b/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review.md
index 9a661152a1..9c367bfa9d 100644
--- a/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review.md
+++ b/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review.md
@@ -46,4 +46,4 @@ Dependency review supports the same languages and package management ecosystems
## Enabling dependency review
-The dependency review feature becomes available when you enable the dependency graph. {% ifversion fpt or ghec %}For more information, see "[Enabling the dependency graph](/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph#enabling-the-dependency-graph)."{% endif %}{% ifversion ghes or ghae %}For more information, see "[Enabling the dependency graph and Dependabot alerts on your enterprise account](/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account)."{% endif %}
+The dependency review feature becomes available when you enable the dependency graph. {% ifversion fpt or ghec %}For more information, see "[Enabling the dependency graph](/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph#enabling-the-dependency-graph)."{% endif %}{% ifversion ghes or ghae %}For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} for your enterprise](/admin/configuration/configuring-github-connect/enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise)."{% endif %}
diff --git a/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md b/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md
index 14ea4e4b20..716a544e20 100644
--- a/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md
+++ b/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md
@@ -65,7 +65,7 @@ You can use the dependency graph to:
{% ifversion fpt or ghec %}To generate a dependency graph, {% data variables.product.product_name %} needs read-only access to the dependency manifest and lock files for a repository. The dependency graph is automatically generated for all public repositories and you can choose to enable it for private repositories. For information about enabling or disabling it for private repositories, see "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)."{% endif %}
-{% ifversion ghes or ghae %}If the dependency graph is not available in your system, your enterprise owner can enable the dependency graph and {% data variables.product.prodname_dependabot_alerts %}. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} on your enterprise account](/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account)."{% endif %}
+{% ifversion ghes or ghae %}If the dependency graph is not available in your system, your enterprise owner can enable the dependency graph and {% data variables.product.prodname_dependabot_alerts %}. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} for your enterprise](/admin/configuration/configuring-github-connect/enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise)."{% endif %}
When the dependency graph is first enabled, any manifest and lock files for supported ecosystems are parsed immediately. The graph is usually populated within minutes but this may take longer for repositories with many dependencies. Once enabled, the graph is automatically updated with every push to the repository{% ifversion fpt or ghec %} and every push to other repositories in the graph{% endif %}.
diff --git a/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md b/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md
index fa87938058..16145e516f 100644
--- a/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md
+++ b/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md
@@ -34,7 +34,7 @@ The dependency graph shows the dependencies{% ifversion fpt or ghec %} and depen
{% endif %}
{% ifversion ghes or ghae-issue-4864 %}
-Enterprise owners can configure the dependency graph at an enterprise level. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} on your enterprise account](/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account)."
+Enterprise owners can configure the dependency graph at an enterprise level. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} for your enterprise](/admin/configuration/configuring-github-connect/enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise)."
{% endif %}
### Dependencies view
diff --git a/content/codespaces/index.md b/content/codespaces/index.md
index da81bc9add..cc695fbf2a 100644
--- a/content/codespaces/index.md
+++ b/content/codespaces/index.md
@@ -17,6 +17,14 @@ featuredLinks:
- /codespaces/getting-started-with-codespaces/getting-started-with-your-python-project-in-codespaces
- /codespaces/getting-started-with-codespaces/getting-started-with-your-java-project-in-codespaces
- /codespaces/getting-started-with-codespaces/getting-started-with-your-dotnet-project
+ videos:
+ - title: "Inside GitHub: Moving GitHub's Development to Codespaces – Cory Wilkerson"
+ href: 'https://www.youtube-nocookie.com/embed/Lj_RpjEuESE'
+ - title: "Making Codespaces Work for You – Allison Weins, Bailey Brooks"
+ href: 'https://www.youtube-nocookie.com/embed/X9Z-rUixnzk'
+ - title: "Coding in the cloud with GitHub Codespaces and VS Code – Damian Brady"
+ href: 'https://www.youtube-nocookie.com/embed/xWr_yH_AGVs'
+ videosHeading: GitHub Universe 2021 videos
guideCards:
- /codespaces/getting-started/deep-dive
- /codespaces/developing-in-codespaces/creating-a-codespace
diff --git a/content/communities/documenting-your-project-with-wikis/editing-wiki-content.md b/content/communities/documenting-your-project-with-wikis/editing-wiki-content.md
index c132ba8340..95fb65a300 100644
--- a/content/communities/documenting-your-project-with-wikis/editing-wiki-content.md
+++ b/content/communities/documenting-your-project-with-wikis/editing-wiki-content.md
@@ -49,7 +49,7 @@ You can link to an image in a repository on {% data variables.product.product_na
## Supported MediaWiki formats
No matter which markup language your wiki page is written in, certain MediaWiki syntax will always be available to you.
-- Links ([except Asciidoc](https://github.com/gollum/gollum/commit/d1cf698b456cd6a35a54c6a8e7b41d3068acec3b))
+- Links ([except AsciiDoc](https://github.com/gollum/gollum/commit/d1cf698b456cd6a35a54c6a8e7b41d3068acec3b))
- Horizontal rules via `---`
- Shorthand symbol entities (such as `δ` or `€`)
diff --git a/content/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-personal-account.md b/content/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-personal-account.md
index 17fbd7b9cc..7473514673 100644
--- a/content/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-personal-account.md
+++ b/content/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-personal-account.md
@@ -34,6 +34,8 @@ When you block a user:
- You are removed as a collaborator on their repositories
- Their sponsorship of you is cancelled
- Any pending repository or account successor invitations to or from the blocked user are cancelled
+- The user is removed as a collaborator from all the Project Boards & Projects (beta) owned by you
+- You are removed as a collaborator from all the Project Boards & Projects (beta) owned by the user
After you've blocked a user, they cannot:
- Send you any notifications, including by [@mentioning](/articles/basic-writing-and-formatting-syntax/#mentioning-people-and-teams) your username
@@ -46,6 +48,8 @@ After you've blocked a user, they cannot:
- Cross-reference your repositories in comments
- Fork, watch, pin, or star your repositories
- Sponsor you
+- Add you as a collaborator on their Project Boards & Projects (beta)
+- Make changes to your public Project Boards & Projects (beta)
In repositories you own, blocked users also cannot:
- Open issues
diff --git a/content/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository.md b/content/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository.md
index 623ae780fc..9b83235279 100644
--- a/content/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository.md
+++ b/content/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository.md
@@ -40,7 +40,7 @@ Open source licenses enable others to freely use, change, and distribute the pro
{% endif %}
-{% ifversion ghes or ghae %}
+{% ifversion ghes %}
{% data reusables.repositories.navigate-to-repo %}
{% data reusables.files.add-file %}
diff --git a/content/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file.md b/content/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file.md
index 8941ffef91..3eaa6e1862 100644
--- a/content/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file.md
+++ b/content/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file.md
@@ -23,20 +23,20 @@ You can add default community health files to a public repository called `.githu
- the `.github` folder
- the `docs` folder
-For example, anyone who creates an issue or pull request in a repository that does not have its own CONTRIBUTING file will see a link to the default CONTRIBUTING file. If a repository has any files in its own `.github/ISSUE_TEMPLATE` folder{% ifversion fpt or ghae or ghes or ghec %}, including issue templates or a *config.yml* file,{% endif %} none of the contents of the default `.github/ISSUE_TEMPLATE` folder will be used.
+For example, anyone who creates an issue or pull request in a repository that does not have its own CONTRIBUTING file will see a link to the default CONTRIBUTING file. If a repository has any files in its own `.github/ISSUE_TEMPLATE` folder{% ifversion fpt or ghes or ghec %}, including issue templates or a *config.yml* file,{% endif %} none of the contents of the default `.github/ISSUE_TEMPLATE` folder will be used.
Default files are not included in clones, packages, or downloads of individual repositories because they are stored only in the `.github` repository.
## Supported file types
-You can create defaults in your organization{% ifversion fpt or ghae or ghes or ghec %} or user account{% endif %} for the following community health files:
+You can create defaults in your organization{% ifversion fpt or ghes or ghec %} or user account{% endif %} for the following community health files:
Community health file | Description
--- | ---{% ifversion fpt or ghec %}
*CODE_OF_CONDUCT.md* | A CODE_OF_CONDUCT file defines standards for how to engage in a community. For more information, see "[Adding a code of conduct to your project](/articles/adding-a-code-of-conduct-to-your-project/)."{% endif %}
*CONTRIBUTING.md* | A CONTRIBUTING file communicates how people should contribute to your project. For more information, see "[Setting guidelines for repository contributors](/articles/setting-guidelines-for-repository-contributors/)."{% ifversion fpt or ghec %}
*FUNDING.yml* | A FUNDING file displays a sponsor button in your repository to increase the visibility of funding options for your open source project. For more information, see "[Displaying a sponsor button in your repository](/articles/displaying-a-sponsor-button-in-your-repository)."{% endif %}
-Issue and pull request templates{% ifversion fpt or ghae or ghes or ghec %} and *config.yml*{% endif %} | Issue and pull request templates customize and standardize the information you'd like contributors to include when they open issues and pull requests in your repository. For more information, see "[About issue and pull request templates](/articles/about-issue-and-pull-request-templates/)."{% ifversion fpt or ghes > 3.0 or ghec %}
+Issue and pull request templates{% ifversion fpt or ghes or ghec %} and *config.yml*{% endif %} | Issue and pull request templates customize and standardize the information you'd like contributors to include when they open issues and pull requests in your repository. For more information, see "[About issue and pull request templates](/articles/about-issue-and-pull-request-templates/)."{% ifversion fpt or ghes > 3.0 or ghec %}
*SECURITY.md* | A SECURITY file gives instructions for how to report a security vulnerability in your project. For more information, see "[Adding a security policy to your repository](/code-security/getting-started/adding-a-security-policy-to-your-repository)."{% endif %}
*SUPPORT.md* | A SUPPORT file lets people know about ways to get help with your project. For more information, see "[Adding support resources to your project](/articles/adding-support-resources-to-your-project/)."
@@ -45,7 +45,7 @@ You cannot create a default license file. License files must be added to individ
## Creating a repository for default files
{% data reusables.repositories.create_new %}
-2. Use the **Owner** drop-down menu, and select the organization{% ifversion fpt or ghae or ghes or ghec %} or user account{% endif %} you want to create default files for.
+2. Use the **Owner** drop-down menu, and select the organization{% ifversion fpt or ghes or ghec %} or user account{% endif %} you want to create default files for.

3. Type **.github** as the name for your repository, and an optional description.

@@ -53,4 +53,4 @@ You cannot create a default license file. License files must be added to individ

{% data reusables.repositories.initialize-with-readme %}
{% data reusables.repositories.create-repo %}
-7. In the repository, create one of the supported community health files. Issue templates{% ifversion fpt or ghae or ghes or ghec %} and their configuration file{% endif %} must be in a folder called `.github/ISSUE_TEMPLATE`. All other supported files may be in the root of the repository, the `.github` folder, or the `docs` folder. For more information, see "[Creating new files](/articles/creating-new-files/)."
+7. In the repository, create one of the supported community health files. Issue templates{% ifversion fpt or ghes or ghec %} and their configuration file{% endif %} must be in a folder called `.github/ISSUE_TEMPLATE`. All other supported files may be in the root of the repository, the `.github` folder, or the `docs` folder. For more information, see "[Creating new files](/articles/creating-new-files/)."
diff --git a/content/developers/overview/replacing-github-services.md b/content/developers/overview/replacing-github-services.md
index 7e39883b4a..34b774dc3f 100644
--- a/content/developers/overview/replacing-github-services.md
+++ b/content/developers/overview/replacing-github-services.md
@@ -32,7 +32,7 @@ As an alternative to the email service, you can now start using email notificati
GitHub Services (sometimes referred to as Service Hooks) is the legacy method of integrating where GitHub hosted a portion of our integrator’s services via [the `github-services` repository](https://github.com/github/github-services). Actions performed on GitHub trigger these services, and you can use these services to trigger actions outside of GitHub.
-{% ifversion ghes or ghae %}
+{% ifversion ghes %}
## Finding repositories that use GitHub Services
We provide a command-line script that helps you identify which repositories on your appliance use GitHub Services. For more information, see [ghe-legacy-github-services-report](/enterprise/{{currentVersion}}/admin/articles/command-line-utilities/#ghe-legacy-github-services-report).{% endif %}
diff --git a/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md b/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md
index 58d790a446..7a8db9f86c 100644
--- a/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md
+++ b/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md
@@ -126,6 +126,34 @@ Key | Type | Description
{{ webhookPayloadsForCurrentVersion.branch_protection_rule.edited }}
{% endif %}
+
+{% ifversion ghes > 3.3 %}
+## cache_sync
+
+A Git ref has been successfully synced to a cache replica. For more information, see "[About repository caching](/admin/enterprise-management/caching-repositories/about-repository-caching)."
+
+### Availability
+
+- Repository webhooks
+- Organization webhooks
+
+### Webhook payload object
+
+Key | Type | Description
+----|------|-------------
+`cache_location` |`string` | The location of the cache server that has been updated.
+`ref` | `string` | The ref that has been updated.
+`before` | `string` | The OID of the ref on the cache replica before it was updated.
+`after` | `string` | The OID of the ref on the cache replica after the update.
+{% data reusables.webhooks.repo_desc %}
+{% data reusables.webhooks.org_desc %}
+{% data reusables.webhooks.sender_desc %}
+
+### Webhook payload example
+
+{{ webhookPayloadsForCurrentVersion.cache_sync.synced }}
+{% endif %}
+
## check_run
{% data reusables.webhooks.check_run_short_desc %}
diff --git a/content/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository.md b/content/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository.md
index ad27ee9b32..33c21edc67 100644
--- a/content/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository.md
+++ b/content/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository.md
@@ -81,7 +81,7 @@ Editing a pinned discussion will not change the discussion's category. For more
## Transferring a discussion
-To transfer a discussion, you must have permissions to create discussions in the repository where you want to transfer the discussion.
+To transfer a discussion, you must have permissions to create discussions in the repository where you want to transfer the discussion. You can only transfer discussions between repositories owned by the same user or organization account. You can't transfer a discussion from a private repository to a public repository.
{% data reusables.repositories.navigate-to-repo %}
{% data reusables.discussions.discussions-tab %}
diff --git a/content/get-started/using-github/keyboard-shortcuts.md b/content/get-started/using-github/keyboard-shortcuts.md
index 2265ca6c86..c7993e58b9 100644
--- a/content/get-started/using-github/keyboard-shortcuts.md
+++ b/content/get-started/using-github/keyboard-shortcuts.md
@@ -94,7 +94,7 @@ For more keyboard shortcuts, see the [CodeMirror documentation](https://codemirr
| control shift p or command shift p| Toggles between the **Write** and **Preview** comment tabs{% ifversion fpt or ghae or ghes > 3.2 or ghec %}
| control shift 7 or command shift 7 | Inserts Markdown formatting for an ordered list
| control shift 8 or command shift 8 | Inserts Markdown formatting for an unordered list{% endif %}
-| control enter | Submits a comment
+| control enter or command enter | Submits a comment
| control . and then control [saved reply number] | Opens saved replies menu and then autofills comment field with a saved reply. For more information, see "[About saved replies](/articles/about-saved-replies)."{% ifversion fpt or ghae or ghes > 3.2 or ghec %}
| control shift . or command shift. | Inserts Markdown formatting for a quote{% endif %}{% ifversion fpt or ghec %}
|control g or command g | Insert a suggestion. For more information, see "[Reviewing proposed changes in a pull request](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request)." |{% endif %}
diff --git a/content/github/site-policy/github-terms-for-additional-products-and-features.md b/content/github/site-policy/github-terms-for-additional-products-and-features.md
index 02ffbb9d03..609d46e161 100644
--- a/content/github/site-policy/github-terms-for-additional-products-and-features.md
+++ b/content/github/site-policy/github-terms-for-additional-products-and-features.md
@@ -20,7 +20,7 @@ By using the Additional Products and Features, you also agree to the applicable
- **GitHub Enterprise Server** users may have access to the following Additional Products and Features: Actions, Advanced Security, Advisory Database, Connect, Dependabot Preview, GitHub Enterprise Importer, Learning Lab, Packages, Pages, and SQL Server Images.
-- **GitHub AE** users may have access to the following Additional Products and Features: Actions, Advanced Security, Advisory Database, {% ifversion ghae %}Connect, {% endif %}Dependabot Preview, GitHub Enterprise Importer, Packages and Pages.
+- **GitHub AE** users may have access to the following Additional Products and Features: Actions, Advanced Security, Advisory Database, Connect, Dependabot Preview, GitHub Enterprise Importer, Packages and Pages.
## Actions
GitHub Actions enables you to create custom software development lifecycle workflows directly in your GitHub repository. Actions is billed on a usage basis. The [Actions documentation](/actions) includes details, including compute and storage quantities (depending on your Account plan), and how to monitor your Actions minutes usage and set usage limits.
@@ -68,7 +68,7 @@ Codespaces allows you to load extensions from the Microsoft Visual Studio Market
The generally available version of Codespaces is not currently available for U.S. government customers. U.S. government customers may continue to use the Codespaces Beta Preview under separate terms. See [Beta Preview terms](/github/site-policy/github-terms-of-service#j-beta-previews).
## Connect
-With GitHub Connect, you can share certain features and data between your GitHub Enterprise Server {% ifversion ghae %}or GitHub AE {% endif %}instance and your GitHub Enterprise Cloud organization or enterprise account on GitHub.com. In order to enable GitHub Connect, you must have at least one (1) account on GitHub Enterprise Cloud or GitHub.com, and one (1) licensed instance of GitHub Enterprise Server{% ifversion ghae %} or GitHub AE{% endif %}. Your use of GitHub Enterprise Cloud or GitHub.com through Connect is governed by the terms under which you license GitHub Enterprise Cloud or GitHub.com. Use of Personal Data is governed by the [GitHub Privacy Statement](/github/site-policy/github-privacy-statement).
+With GitHub Connect, you can share certain features and data between your GitHub Enterprise Server or GitHub AE instance and your GitHub Enterprise Cloud organization or enterprise account on GitHub.com. In order to enable GitHub Connect, you must have at least one (1) account on GitHub Enterprise Cloud or GitHub.com, and one (1) licensed instance of GitHub Enterprise Server or GitHub AE. Your use of GitHub Enterprise Cloud or GitHub.com through Connect is governed by the terms under which you license GitHub Enterprise Cloud or GitHub.com. Use of Personal Data is governed by the [GitHub Privacy Statement](/github/site-policy/github-privacy-statement).
## GitHub Enterprise Importer
Importer is a framework for exporting data from other sources to be imported to the GitHub platform. Importer is provided “AS-IS”.
diff --git a/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md b/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md
index f3c22ea38e..b205c53e52 100644
--- a/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md
+++ b/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md
@@ -13,7 +13,7 @@ shortTitle: Basic formatting syntax
---
## Headings
-To create a heading, add one to six `#` symbols before your heading text. The number of `#` you use will determine the size of the heading.
+To create a heading, add one to six # symbols before your heading text. The number of # you use will determine the size of the heading.
```markdown
# The largest heading
@@ -29,15 +29,15 @@ You can indicate emphasis with bold, italic, or strikethrough text in comment fi
| Style | Syntax | Keyboard shortcut | Example | Output |
| --- | --- | --- | --- | --- |
-| Bold | `** **` or `__ __`| command/control + b | `**This is bold text**` | **This is bold text** |
-| Italic | `* *` or `_ _` | command/control + i | `*This text is italicized*` | *This text is italicized* |
+| Bold | `** **` or `__ __`| Command+B (Mac) or Ctrl+B (Windows/Linux) | `**This is bold text**` | **This is bold text** |
+| Italic | `* *` or `_ _` | Command+I (Mac) or Ctrl+I (Windows/Linux) | `*This text is italicized*` | *This text is italicized* |
| Strikethrough | `~~ ~~` | | `~~This was mistaken text~~` | ~~This was mistaken text~~ |
| Bold and nested italic | `** **` and `_ _` | | `**This text is _extremely_ important**` | **This text is _extremely_ important** |
| All bold and italic | `*** ***` | | `***All this text is important***` | ***All this text is important*** |
## Quoting text
-You can quote text with a `>`.
+You can quote text with a >.
```markdown
Text that is not a quote
@@ -49,13 +49,13 @@ Text that is not a quote
{% tip %}
-**Tip:** When viewing a conversation, you can automatically quote text in a comment by highlighting the text, then typing `r`. You can quote an entire comment by clicking {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}, then **Quote reply**. For more information about keyboard shortcuts, see "[Keyboard shortcuts](/articles/keyboard-shortcuts/)."
+**Tip:** When viewing a conversation, you can automatically quote text in a comment by highlighting the text, then typing R. You can quote an entire comment by clicking {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}, then **Quote reply**. For more information about keyboard shortcuts, see "[Keyboard shortcuts](/articles/keyboard-shortcuts/)."
{% endtip %}
## Quoting code
-You can call out code or a command within a sentence with single backticks. The text within the backticks will not be formatted.{% ifversion fpt or ghae or ghes > 3.1 or ghec %} You can also press the `command` or `Ctrl` + `e` keyboard shortcut to insert the backticks for a code block within a line of Markdown.{% endif %}
+You can call out code or a command within a sentence with single backticks. The text within the backticks will not be formatted.{% ifversion fpt or ghae or ghes > 3.1 or ghec %} You can also press the Command+E (Mac) or Ctrl+E (Windows/Linux) keyboard shortcut to insert the backticks for a code block within a line of Markdown.{% endif %}
```markdown
Use `git status` to list all new or modified files that haven't yet been committed.
@@ -82,7 +82,7 @@ For more information, see "[Creating and highlighting code blocks](/articles/cre
## Links
-You can create an inline link by wrapping link text in brackets `[ ]`, and then wrapping the URL in parentheses `( )`. {% ifversion fpt or ghae or ghes > 3.1 or ghec %}You can also use the keyboard shortcut `command + k` to create a link.{% endif %}{% ifversion fpt or ghae-issue-5434 or ghes > 3.3 or ghec %} When you have text selected, you can paste a URL from your clipboard to automatically create a link from the selection.{% endif %}
+You can create an inline link by wrapping link text in brackets `[ ]`, and then wrapping the URL in parentheses `( )`. {% ifversion fpt or ghae or ghes > 3.1 or ghec %}You can also use the keyboard shortcut Command+K to create a link.{% endif %}{% ifversion fpt or ghae-issue-5434 or ghes > 3.3 or ghec %} When you have text selected, you can paste a URL from your clipboard to automatically create a link from the selection.{% endif %}
`This site was built using [GitHub Pages](https://pages.github.com/).`
@@ -104,7 +104,7 @@ You can create an inline link by wrapping link text in brackets `[ ]`, and then
## Images
-You can display an image by adding `!` and wrapping the alt text in`[ ]`. Then wrap the link for the image in parentheses `()`.
+You can display an image by adding ! and wrapping the alt text in `[ ]`. Then wrap the link for the image in parentheses `()`.
``
@@ -151,7 +151,7 @@ We distinguish between light and dark color modes, so there are two options avai
## Lists
-You can make an unordered list by preceding one or more lines of text with `-` or `*`.
+You can make an unordered list by preceding one or more lines of text with - or *.
```markdown
- George Washington
@@ -175,7 +175,7 @@ To order your list, precede each line with a number.
You can create a nested list by indenting one or more list items below another item.
-To create a nested list using the web editor on {% data variables.product.product_name %} or a text editor that uses a monospaced font, like [Atom](https://atom.io/), you can align your list visually. Type space characters in front of your nested list item, until the list marker character (`-` or `*`) lies directly below the first character of the text in the item above it.
+To create a nested list using the web editor on {% data variables.product.product_name %} or a text editor that uses a monospaced font, like [Atom](https://atom.io/), you can align your list visually. Type space characters in front of your nested list item, until the list marker character (- or *) lies directly below the first character of the text in the item above it.
```markdown
1. First list item
@@ -214,7 +214,7 @@ For more examples, see the [GitHub Flavored Markdown Spec](https://github.github
{% data reusables.repositories.task-list-markdown %}
-If a task list item description begins with a parenthesis, you'll need to escape it with `\`:
+If a task list item description begins with a parenthesis, you'll need to escape it with \\:
`- [ ] \(Optional) Open a followup issue`
@@ -222,7 +222,7 @@ For more information, see "[About task lists](/articles/about-task-lists)."
## Mentioning people and teams
-You can mention a person or [team](/articles/setting-up-teams/) on {% data variables.product.product_name %} by typing `@` plus their username or team name. This will trigger a notification and bring their attention to the conversation. People will also receive a notification if you edit a comment to mention their username or team name. For more information about notifications, see {% ifversion fpt or ghes or ghae or ghec %}"[About notifications](/github/managing-subscriptions-and-notifications-on-github/about-notifications){% else %}"[About notifications](/github/receiving-notifications-about-activity-on-github/about-notifications){% endif %}."
+You can mention a person or [team](/articles/setting-up-teams/) on {% data variables.product.product_name %} by typing @ plus their username or team name. This will trigger a notification and bring their attention to the conversation. People will also receive a notification if you edit a comment to mention their username or team name. For more information about notifications, see {% ifversion fpt or ghes or ghae or ghec %}"[About notifications](/github/managing-subscriptions-and-notifications-on-github/about-notifications){% else %}"[About notifications](/github/receiving-notifications-about-activity-on-github/about-notifications){% endif %}."
`@github/support What do you think about these updates?`
@@ -230,13 +230,13 @@ You can mention a person or [team](/articles/setting-up-teams/) on {% data varia
When you mention a parent team, members of its child teams also receive notifications, simplifying communication with multiple groups of people. For more information, see "[About teams](/articles/about-teams)."
-Typing an `@` symbol will bring up a list of people or teams on a project. The list filters as you type, so once you find the name of the person or team you are looking for, you can use the arrow keys to select it and press either tab or enter to complete the name. For teams, enter the @organization/team-name and all members of that team will get subscribed to the conversation.
+Typing an @ symbol will bring up a list of people or teams on a project. The list filters as you type, so once you find the name of the person or team you are looking for, you can use the arrow keys to select it and press either tab or enter to complete the name. For teams, enter the @organization/team-name and all members of that team will get subscribed to the conversation.
The autocomplete results are restricted to repository collaborators and any other participants on the thread.
## Referencing issues and pull requests
-You can bring up a list of suggested issues and pull requests within the repository by typing `#`. Type the issue or pull request number or title to filter the list, and then press either tab or enter to complete the highlighted result.
+You can bring up a list of suggested issues and pull requests within the repository by typing #. Type the issue or pull request number or title to filter the list, and then press either tab or enter to complete the highlighted result.
For more information, see "[Autolinked references and URLs](/articles/autolinked-references-and-urls)."
@@ -269,7 +269,7 @@ You can add emoji to your writing by typing `:EMOJICODE:`.

-Typing `:` will bring up a list of suggested emoji. The list will filter as you type, so once you find the emoji you're looking for, press **Tab** or **Enter** to complete the highlighted result.
+Typing : will bring up a list of suggested emoji. The list will filter as you type, so once you find the emoji you're looking for, press **Tab** or **Enter** to complete the highlighted result.
For a full list of available emoji and codes, check out [the Emoji-Cheat-Sheet](https://github.com/ikatyang/emoji-cheat-sheet/blob/master/README.md).
@@ -318,7 +318,7 @@ You can tell {% data variables.product.product_name %} to hide content from the
## Ignoring Markdown formatting
-You can tell {% data variables.product.product_name %} to ignore (or escape) Markdown formatting by using `\` before the Markdown character.
+You can tell {% data variables.product.product_name %} to ignore (or escape) Markdown formatting by using \\ before the Markdown character.
`Let's rename \*our-new-project\* to \*our-old-project\*.`
diff --git a/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md b/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md
index 5f8e3d33ce..5fb2d90e01 100644
--- a/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md
+++ b/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md
@@ -43,6 +43,9 @@ We support these files:
* PNG (*.png*)
* GIF (*.gif*)
* JPEG (*.jpg*)
+{%- if svg-support %}
+* SVG (*.svg*)
+{%- endif %}
* Log files (*.log*)
* Microsoft Word (*.docx*), Powerpoint (*.pptx*), and Excel (*.xlsx*) documents
* Text files (*.txt*)
diff --git a/content/issues/index.md b/content/issues/index.md
index 7b78e0992a..809e933876 100644
--- a/content/issues/index.md
+++ b/content/issues/index.md
@@ -25,8 +25,14 @@ featuredLinks:
- /issues/using-labels-and-milestones-to-track-work/managing-labels
- /github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests
- '{% ifversion ghes or ghae %}/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards{% endif %}'
-changelog:
- label: issues
+ videos:
+ - title: "Planning at scale with Issues – Mario Rodriguez"
+ href: 'https://www.youtube-nocookie.com/embed/ha1KHcPMAEk'
+ - title: "Planning at GitHub (Projects + Issues) – Matt Butler"
+ href: 'https://www.youtube-nocookie.com/embed/HwpVvDURHKw'
+ - title: "Issue Forms for open source – Luke Hefson"
+ href: 'https://www.youtube-nocookie.com/embed/2Yh8ueUE0oY'
+ videosHeading: GitHub Universe 2021 videos
layout: product-landing
beta_product: false
versions:
diff --git a/content/issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests.md b/content/issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests.md
index 81f89fc1f3..cf85394183 100644
--- a/content/issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests.md
+++ b/content/issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests.md
@@ -107,7 +107,7 @@ You can filter a repository's list of pull requests to find:
- Pull requests that [require a review](/github/administering-a-repository/about-protected-branches#require-pull-request-reviews-before-merging) before they can be merged
- Pull requests that a reviewer has approved
- Pull requests in which a reviewer has asked for changes
-- Pull requests that you have reviewed{% ifversion fpt or ghae or ghes > 3.2 or ghec %}
+- Pull requests that you have reviewed{% ifversion fpt or ghae-issue-5181 or ghes > 3.2 or ghec %}
- Pull requests that someone has asked you directly to review{% endif %}
- Pull requests that [someone has asked you, or a team you're a member of, to review](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review)
@@ -191,7 +191,7 @@ For pull requests, you can also use search to:
- Filter pull requests that a reviewer has approved: `state:open type:pr review:approved`
- Filter pull requests in which a reviewer has asked for changes: `state:open type:pr review:changes_requested`
- Filter pull requests by [reviewer](/articles/about-pull-request-reviews/): `state:open type:pr reviewed-by:octocat`
-- Filter pull requests by the specific user [requested for review](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review): `state:open type:pr review-requested:octocat`{% ifversion fpt or ghae or ghes > 3.2 or ghec %}
+- Filter pull requests by the specific user [requested for review](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review): `state:open type:pr review-requested:octocat`{% ifversion fpt or ghae-issue-5181 or ghes > 3.2 or ghec %}
- Filter pull requests that someone has asked you directly to review: `state:open type:pr user-review-requested:@me`{% endif %}
- Filter pull requests by the team requested for review: `state:open type:pr team-review-requested:github/atom`{% ifversion fpt or ghes or ghae or ghec %}
- Filter for pull requests that are linked to an issue that the pull request may close: `linked:issue`{% endif %}
diff --git a/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md b/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md
index 62a0509814..1e1b6f5e09 100644
--- a/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md
+++ b/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md
@@ -131,7 +131,7 @@ Some of the features listed below are limited to organizations using {% data var
| [Delete or transfer repositories out of the organization](/articles/setting-permissions-for-deleting-or-transferring-repositories) | | | | | **X** |
| [Archive repositories](/articles/about-archiving-repositories) | | | | | **X** |{% ifversion fpt or ghec %}
| Display a sponsor button (see "[Displaying a sponsor button in your repository](/articles/displaying-a-sponsor-button-in-your-repository)") | | | | | **X** |{% endif %}
-| Create autolink references to external resources, like JIRA or Zendesk (see "[Configuring autolinks to reference external resources](/articles/configuring-autolinks-to-reference-external-resources)") | | | | | **X** |{% ifversion fpt or ghec %}
+| Create autolink references to external resources, like Jira or Zendesk (see "[Configuring autolinks to reference external resources](/articles/configuring-autolinks-to-reference-external-resources)") | | | | | **X** |{% ifversion fpt or ghec %}
| [Enable {% data variables.product.prodname_discussions %}](/github/administering-a-repository/enabling-or-disabling-github-discussions-for-a-repository) in a repository | | | | **X** | **X** |
| [Create and edit categories](/discussions/managing-discussions-for-your-community/managing-categories-for-discussions-in-your-repository) for {% data variables.product.prodname_discussions %} | | | | **X** | **X** |
| [Move a discussion to a different category](/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository) | | | **X** | **X** | **X** |
diff --git a/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md b/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md
index b364a65fcc..94fb0fdd58 100644
--- a/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md
+++ b/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md
@@ -21,6 +21,7 @@ The exported information includes:
- Whether the membership is public or private
- Whether the user is an organization owner or member
- Datetime of the user's last activity (for a full list of relevant activity, see "[Managing dormant users](/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users)")
+- The user's SAML NameID, if available
You can get member information directly from the {% data variables.product.product_name %} user interface, or using APIs. This article explains how to obtain member information from within {% data variables.product.product_name %}.
diff --git a/content/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization.md b/content/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization.md
index c846119a93..4336c9754e 100644
--- a/content/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization.md
+++ b/content/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization.md
@@ -18,7 +18,20 @@ shortTitle: Reinstate a member
## About member reinstatement
-If you [remove a user from your organization](/articles/removing-a-member-from-your-organization){% ifversion ghae %} or{% else %},{% endif %} [convert an organization member to an outside collaborator](/articles/converting-an-organization-member-to-an-outside-collaborator){% ifversion not ghae %}, or a user is removed from your organization because you've [required members and outside collaborators to enable two-factor authentication (2FA)](/articles/requiring-two-factor-authentication-in-your-organization){% endif %}, the user's access privileges and settings are saved for three months. You can restore the user's privileges if you {% ifversion fpt or ghec %}invite{% else %}add{% endif %} them back to the organization within that time frame.
+If a user is removed from your organization in one of the following ways, the user's access privileges and settings are saved for three months.
+
+- You manually removed the user from your organization. For more information, see "[Removing a member from your organization](/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization)."{% ifversion not ghae %}
+- The user was removed from your organization because you've required members and outside collaborators to enable two-factor authentication (2FA). For more information, see "[Requiring two-factor authentication in your organization](/organizations/keeping-your-organization-secure/requiring-two-factor-authentication-in-your-organization)."{% endif %}{% ifversion fpt or ghec %}
+- The user was removed from your organization because you enforced SAML single sign-on. For more information, see "[Enforcing SAML single sign-on for your organization](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}{% endif %}
+- You converted an organization member to an outside collaborator. For more information, see "[Converting an organization member to an outside collaborator](/organizations/managing-access-to-your-organizations-repositories/converting-an-organization-member-to-an-outside-collaborator)."
+
+You can restore the user's privileges if you {% ifversion fpt or ghec %}invite{% else %}add{% endif %} them back to the organization within that time frame.
+
+{% note %}
+
+**Note:** {% data reusables.saml.removed-users-can-rejoin %} You do not need to invite these users to rejoin. Instead, the user can sign into their personal account, navigate to the organization, and click the banner to authenticate via SAML single sign-on.
+
+{% endnote %}
{% data reusables.two_fa.send-invite-to-reinstate-user-before-2fa-is-enabled %}
diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md
index 0c2dba8ac3..59f97e484a 100644
--- a/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md
+++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md
@@ -27,31 +27,25 @@ After you enable SCIM, the following provisioning features are available for any
| Push Profile Updates | When you update a user's profile in Okta, Okta will update the metadata for the user's membership in your organization on {% data variables.product.product_location %}. |
| Reactivate Users | When you reactivate a user in Okta, Okta will send an email invitation for the user to rejoin your organization on {% data variables.product.product_location %}. |
-## Prerequisites
-
-{% data reusables.saml.use-classic-ui %}
+Alternatively, you can configure SAML SSO for an enterprise using Okta. SCIM for enterprise accounts is only available with Enterprise Managed Users. For more information, see "[Configuring SAML single sign-on for your enterprise using Okta](/admin/identity-and-access-management/managing-iam-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise-using-okta)" and "[Configuring SCIM provisioning for Enterprise Managed Users with Okta](/admin/identity-and-access-management/managing-iam-with-enterprise-managed-users/configuring-scim-provisioning-for-enterprise-managed-users-with-okta)."
## Adding the {% data variables.product.prodname_ghe_cloud %} application in Okta
-{% data reusables.saml.okta-dashboard-click-applications %}
-{% data reusables.saml.add-okta-application %}
-{% data reusables.saml.search-ghec-okta %}
-4. To the right of "Github Enterprise Cloud - Organization", click **Add**.
- 
-
-5. In the **GitHub Organization** field, type the name of your organization on {% data variables.product.product_location %}. For example, if your organization's URL is https://github.com/octo-org, the organization name would be `octo-org`.
- 
-
-6. Click **Done**.
+{% data reusables.saml.okta-sign-into-your-account %}
+1. Navigate to the [Github Enterprise Cloud - Organization](https://www.okta.com/integrations/github-enterprise-cloud-organization) application in the Okta Integration Network and click **Add Integration**.
+1. Optionally, to the right of "Application label", type a descriptive name for the application.
+1. In the **GitHub Organization** field, type the name of your organization on {% data variables.product.product_location %}. For example, if your organization's URL is https://github.com/octo-org, the organization name would be `octo-org`.
+1. Click **Done**.
## Enabling and testing SAML SSO
+{% data reusables.saml.okta-sign-into-your-account %}
{% data reusables.saml.okta-dashboard-click-applications %}
{% data reusables.saml.okta-applications-click-ghec-application-label %}
{% data reusables.saml.assign-yourself-to-okta %}
{% data reusables.saml.okta-sign-on-tab %}
{% data reusables.saml.okta-view-setup-instructions %}
-6. Enable and test SAML SSO on {% data variables.product.prodname_dotcom %} using the sign on URL, issuer URL, and public certificates from the "How to Configure SAML 2.0" guide. For more information, see "[Enabling and testing SAML single sign-on for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization)."
+1. Enable and test SAML SSO on {% data variables.product.prodname_dotcom %} using the sign on URL, issuer URL, and public certificates from the "How to Configure SAML 2.0" guide. For more information, see "[Enabling and testing SAML single sign-on for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization#enabling-and-testing-saml-single-sign-on-for-your-organization)."
## Configuring access provisioning with SCIM in Okta
@@ -60,12 +54,9 @@ After you enable SCIM, the following provisioning features are available for any
{% data reusables.saml.okta-provisioning-tab %}
{% data reusables.saml.okta-configure-api-integration %}
{% data reusables.saml.okta-enable-api-integration %}
+1. Click **Authenticate with Github Enterprise Cloud - Organization**.
+1. To the right of your organization's name, click **Grant**.
-
-6. Click **Authenticate with Github Enterprise Cloud - Organization**.
- 
-
-7. To the right of your organization's name, click **Grant**.

{% note %}
@@ -74,7 +65,6 @@ After you enable SCIM, the following provisioning features are available for any
{% endnote %}
1. Click **Authorize OktaOAN**.
- 
{% data reusables.saml.okta-save-provisioning %}
{% data reusables.saml.okta-edit-provisioning %}
diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md
index c91bed37e7..28532d2b0b 100644
--- a/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md
+++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md
@@ -20,7 +20,7 @@ When you enable SAML SSO, {% data variables.product.prodname_dotcom %} will prom
You can also enforce SAML SSO for your organization. {% data reusables.saml.when-you-enforce %} Enforcement removes any members and administrators who have not authenticated via your IdP from the organization. {% data variables.product.company_short %} sends an email notification to each removed user.
-Any users removed due to SAML SSO enforcement can rejoin your organization by authenticating via SAML single sign-on. If a user rejoins the organization within three months, the user's access privileges and settings will be restored. For more information, see "[Reinstating a former member of your organization](/articles/reinstating-a-former-member-of-your-organization)."
+{% data reusables.saml.removed-users-can-rejoin %} If a user rejoins the organization within three months, the user's access privileges and settings will be restored. For more information, see "[Reinstating a former member of your organization](/articles/reinstating-a-former-member-of-your-organization)."
Bots and service accounts that do not have external identities set up in your organization's IdP will also be removed when you enforce SAML SSO. For more information about bots and service accounts, see "[Managing bots and service accounts with SAML single sign-on](/articles/managing-bots-and-service-accounts-with-saml-single-sign-on)."
diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md
index ff1a332a19..606daa4141 100644
--- a/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md
+++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md
@@ -71,7 +71,7 @@ Okta team synchronization requires that SAML and SCIM with Okta have already bee
To avoid potential team synchronization errors with Okta, we recommend that you confirm that SCIM linked identities are correctly set up for all organization members who are members of your chosen Okta groups, before enabling team synchronization on {% data variables.product.prodname_dotcom %}.
-If an organization member does not have a linked SCIM identity, then team synchronization will not work as expected and the user may not be added or removed from teams as expected. If any of these users are missing a SCIM linked identity, you will need to reprovision them.
+If an organization member does not have a linked SCIM identity, then team synchronization will not work as expected and the user may not be added or removed from teams as expected. If any of these users are missing a SCIM linked identity, you will need to re-provision them.
For help on provisioning users that have missing a missing SCIM linked identity, see "[Troubleshooting identity and access management](/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management)."
diff --git a/content/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll.md b/content/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll.md
index 43c4262281..d9fea6a693 100644
--- a/content/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll.md
+++ b/content/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll.md
@@ -68,7 +68,9 @@ Before you can use Jekyll to create a {% data variables.product.prodname_pages %
If you chose to publish your site from the `gh-pages` branch, create and checkout the `gh-pages` branch.
```shell
$ git checkout --orphan gh-pages
- # Creates a new branch, with no history or contents, called gh-pages and switches to the gh-pages branch
+ # Creates a new branch, with no history or contents, called gh-pages, and switches to the gh-pages branch
+ $ git rm -rf
+ # Removes the contents from your default branch from the working directory
```
1. To create a new Jekyll site, use the `jekyll new` command:
```shell
diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/using-a-merge-queue.md b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/using-a-merge-queue.md
index 6f1a34c11c..1ba695a53f 100644
--- a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/using-a-merge-queue.md
+++ b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/using-a-merge-queue.md
@@ -17,7 +17,7 @@ shortTitle: Use merge queue
{% data reusables.pull_requests.merge-queue-overview %}
-The merge queue creates temporary preparatory branches to validate pull requests against the latest version of the base branch. To ensure that {% data variables.product.prodname_dotcom %} validates these preparatory branches, you may need to update your CI configuration to trigger builds on branch names starting with `gh/readonly/queue/{base_branch}`.
+The merge queue creates temporary preparatory branches to validate pull requests against the latest version of the base branch. To ensure that {% data variables.product.prodname_dotcom %} validates these preparatory branches, you may need to update your CI configuration to trigger builds on branch names starting with `gh-readonly-queue/{base_branch}`.
For example, with {% data variables.product.prodname_actions %}, adding the following trigger to a workflow will cause the workflow to run when any push is made to a merge queue preparatory branch that targets `main`.
@@ -25,7 +25,8 @@ For example, with {% data variables.product.prodname_actions %}, adding the foll
on:
push:
branches:
- - gh/readonly/queue/main/**
+ - main
+ - gh-readonly-queue/main/**
```
{% data reusables.pull_requests.merge-queue-merging-method %}
diff --git a/content/repositories/index.md b/content/repositories/index.md
index 1777d02c6d..abc6d5ee8e 100644
--- a/content/repositories/index.md
+++ b/content/repositories/index.md
@@ -1,6 +1,27 @@
---
title: Repositories
intro: Learn to use and manage the repositories that allow you to store and collaborate on your project's code.
+introLinks:
+ quickstart: /get-started/quickstart/create-a-repo
+ overview: /repositories/creating-and-managing-repositories/about-repositories
+featuredLinks:
+ guides:
+ - /repositories/creating-and-managing-repositories/cloning-a-repository
+ - /repositories/creating-and-managing-repositories/restoring-a-deleted-repository
+ - /repositories/working-with-files/managing-files/adding-a-file-to-a-repository
+ - /repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository
+ popular:
+ - /repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches
+ - /repositories/releasing-projects-on-github/about-releases
+ - /repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes
+ - /repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
+ guideCards:
+ - /repositories/creating-and-managing-repositories/deleting-a-repository
+ - /repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/managing-a-branch-protection-rule
+ - /repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility
+changelog:
+ label: 'repos'
+layout: product-landing
redirect_from:
- /github/creating-cloning-and-archiving-repositories
versions:
@@ -19,4 +40,3 @@ children:
- /viewing-activity-and-data-for-your-repository
- /archiving-a-github-repository
---
-
diff --git a/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md
index ad440ee372..41096e5c14 100644
--- a/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md
+++ b/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md
@@ -46,7 +46,9 @@ You can disable all workflows for a repository or set a policy that configures w
{% data reusables.repositories.sidebar-settings %}
{% data reusables.repositories.settings-sidebar-actions %}
1. Under **Actions permissions**, select an option.
+

+
1. Click **Save**.
## Allowing specific actions to run
@@ -57,12 +59,14 @@ You can disable all workflows for a repository or set a policy that configures w
{% data reusables.repositories.sidebar-settings %}
{% data reusables.repositories.settings-sidebar-actions %}
1. Under **Actions permissions**, select **Allow select actions** and add your required actions to the list.
+
{%- ifversion ghes > 3.0 %}

{%- else %}

{%- endif %}
-2. Click **Save**.
+
+1. Click **Save**.
{% ifversion fpt or ghec %}
## Configuring required approval for workflows from public forks
@@ -109,7 +113,9 @@ The default permissions can also be configured in the organization settings. If
{% data reusables.repositories.sidebar-settings %}
{% data reusables.repositories.settings-sidebar-actions %}
1. Under **Workflow permissions**, choose whether you want the `GITHUB_TOKEN` to have read and write access for all scopes, or just read access for the `contents` scope.
+

+
1. Click **Save** to apply the settings.
{% endif %}
@@ -118,16 +124,18 @@ The default permissions can also be configured in the organization settings. If
Members of your enterprise can use internal repositories to work on projects without sharing information publicly. For information, see "[About repositories](/repositories/creating-and-managing-repositories/about-repositories#about-internal-repositories)."
-To configure whether workflows in an internal repository can be accessed from outside the repository:
+You can configure whether {% if internal-actions%}actions and {% endif %}workflows in an internal repository can be accessed from outside the repository.{% if internal-actions %} For more information, see "[Sharing actions and workflows with your enterprise](/actions/creating-actions/sharing-actions-and-workflows-with-your-enterprise)."{% endif %}
1. On {% data variables.product.prodname_dotcom %}, navigate to the main page of the internal repository.
1. Under your repository name, click {% octicon "gear" aria-label="The gear icon" %} **Settings**.
{% data reusables.repositories.settings-sidebar-actions %}
1. Under **Access**, choose one of the access settings:
- 
- * **Not accessible** - Workflows in other repositories can't use workflows in this repository.
- * **Accessible from repositories in the '<organization name>' organization** - Workflows in other repositories can use workflows in this repository if they are part of the same organization and their visibility is private or internal.
- * **Accessible from repositories in the '<enterprise name>' enterprise** - Workflows in other repositories can use workflows in this repository if they are part of the same enterprise and their visibility is private or internal.
+
+ {% ifversion ghes > 3.4 or ghae-issue-6090 or ghec %}{% else %}{% endif %}
+
+ * **Not accessible** - Workflows in other repositories cannot access this repository.
+ * **Accessible from repositories in the 'ORGANIZATION NAME' organization** - {% ifversion ghes > 3.4 or ghae-issue-6090 or ghec %}Workflows in other repositories that are part of the 'ORGANIZATION NAME' organization can access the actions and workflows in this repository. Access is allowed only from private or internal repositories.{% else %}Workflows in other repositories can use workflows in this repository if they are part of the same organization and their visibility is private or internal.{% endif %}
+ * **Accessible from repositories in the 'ENTERPRISE NAME' enterprise** - {% ifversion ghes > 3.4 or ghae-issue-6090 or ghec %}Workflows in other repositories that are part of the 'ENTERPRISE NAME' enterprise can access the actions and workflows in this repository. Access is allowed only from private or internal repositories.{% else %}Workflows in other repositories can use workflows in this repository if they are part of the same enterprise and their visibility is private or internal.{% endif %}
1. Click **Save** to apply the settings.
{% endif %}
diff --git a/content/rest/guides/basics-of-authentication.md b/content/rest/guides/basics-of-authentication.md
index 6c2ccf70a5..f948b6118d 100644
--- a/content/rest/guides/basics-of-authentication.md
+++ b/content/rest/guides/basics-of-authentication.md
@@ -76,7 +76,7 @@ Next, in _views/index.erb_, paste this content:
We're going to now talk to the GitHub API. Ready?
- Click here to begin!
+ Click here to begin!
If that link doesn't work, remember to provide your own Client ID!
diff --git a/content/search-github/getting-started-with-searching-on-github/about-searching-on-github.md b/content/search-github/getting-started-with-searching-on-github/about-searching-on-github.md
index 74e1a19074..9f854f1df5 100644
--- a/content/search-github/getting-started-with-searching-on-github/about-searching-on-github.md
+++ b/content/search-github/getting-started-with-searching-on-github/about-searching-on-github.md
@@ -69,8 +69,8 @@ If you use {% ifversion fpt or ghec %}{% data variables.product.prodname_ghe_ser
{% ifversion fpt or ghes or ghec %}
-- "[Enabling {% data variables.product.prodname_unified_search %} between your enterprise account and {% data variables.product.prodname_dotcom_the_website %}](/{% ifversion ghes %}{{ currentVersion }}{% else %}enterprise-server@latest{% endif %}/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom)" in the {% data variables.product.prodname_ghe_server %} documentation{% endif %}
-- "[Enabling {% data variables.product.prodname_unified_search %} between your enterprise account and {% data variables.product.prodname_dotcom_the_website %}](/github-ae@latest/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom)" in the {% data variables.product.prodname_ghe_managed %} documentation
+- "[Enabling {% data variables.product.prodname_unified_search %} for your enterprise]({% ifversion not ghes %}/enterprise-server@latest{% endif %}/admin/configuration/configuring-github-connect/enabling-unified-search-for-your-enterprise)" in the {% data variables.product.prodname_ghe_server %} documentation{% endif %}
+- "[Enabling {% data variables.product.prodname_unified_search %} for your enterprise](/github-ae@latest/admin/configuration/configuring-github-connect/enabling-unified-search-for-your-enterprise)" in the {% data variables.product.prodname_ghe_managed %} documentation
{% ifversion ghes or ghae %}
diff --git a/content/search-github/getting-started-with-searching-on-github/enabling-githubcom-repository-search-from-your-private-enterprise-environment.md b/content/search-github/getting-started-with-searching-on-github/enabling-githubcom-repository-search-from-your-private-enterprise-environment.md
index 2e98bbd3ee..35de0bc389 100644
--- a/content/search-github/getting-started-with-searching-on-github/enabling-githubcom-repository-search-from-your-private-enterprise-environment.md
+++ b/content/search-github/getting-started-with-searching-on-github/enabling-githubcom-repository-search-from-your-private-enterprise-environment.md
@@ -25,8 +25,8 @@ You can search for designated private repositories on {% data variables.product.
## Prerequisites
- An enterprise owner for {% ifversion fpt or ghec %}your private {% data variables.product.prodname_enterprise %} environment{% else %}{% data variables.product.product_name %}{% endif %} must enable {% data variables.product.prodname_github_connect %} and {% data variables.product.prodname_unified_search %} for private repositories. For more information, see the following.{% ifversion fpt or ghes or ghec %}
- - "[Enabling {% data variables.product.prodname_unified_search %} between your enterprise account and {% data variables.product.prodname_dotcom_the_website %}](/{% ifversion ghes %}{{ currentVersion }}{% else %}enterprise-server@latest{% endif %}/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom)"{% ifversion fpt or ghec %} in the {% data variables.product.prodname_ghe_server %} documentation{% endif %}{% endif %}{% ifversion fpt or ghec or ghae %}
- - "[Enabling {% data variables.product.prodname_unified_search %} between your enterprise account and {% data variables.product.prodname_dotcom_the_website %}](/github-ae@latest/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom)"{% ifversion fpt or ghec %} in the {% data variables.product.prodname_ghe_managed %} documentation{% endif %}
+ - "[Enabling {% data variables.product.prodname_unified_search %} for your enterprise](/{% ifversion not ghes %}enterprise-server@latest/{% endif %}admin/configuration/configuring-github-connect/enabling-unified-search-for-your-enterprise"{% ifversion fpt or ghec %} in the {% data variables.product.prodname_ghe_server %} documentation{% endif %}{% endif %}{% ifversion fpt or ghec or ghae %}
+ - "[Enabling {% data variables.product.prodname_unified_search %} for your enterprise}](/github-ae@latest/admin/configuration/configuring-github-connect/enabling-unified-search-for-your-enterprise)"{% ifversion fpt or ghec %} in the {% data variables.product.prodname_ghe_managed %} documentation{% endif %}
{% endif %}
- You must already have access to the private repositories and connect your account {% ifversion fpt or ghec %}in your private {% data variables.product.prodname_enterprise %} environment{% else %}on {% data variables.product.product_name %}{% endif %} with your account on {% data variables.product.prodname_dotcom_the_website %}. For more information about the repositories you can search, see "[About searching on GitHub](/github/searching-for-information-on-github/getting-started-with-searching-on-github/about-searching-on-github#searching-repositories-on-githubcom-from-your-private-enterprise-environment)."
diff --git a/content/search-github/searching-on-github/searching-issues-and-pull-requests.md b/content/search-github/searching-on-github/searching-issues-and-pull-requests.md
index d41e60cedd..313b434b4c 100644
--- a/content/search-github/searching-on-github/searching-issues-and-pull-requests.md
+++ b/content/search-github/searching-on-github/searching-issues-and-pull-requests.md
@@ -259,7 +259,7 @@ You can filter pull requests based on their [review status](/pull-requests/colla
| `review:approved` | [**type:pr review:approved**](https://github.com/search?utf8=%E2%9C%93&q=type%3Apr+review%3Aapproved&type=Issues) matches pull requests that a reviewer has approved.
| `review:changes_requested` | [**type:pr review:changes_requested**](https://github.com/search?utf8=%E2%9C%93&q=type%3Apr+review%3Achanges_requested&type=Issues) matches pull requests in which a reviewer has asked for changes.
| reviewed-by:USERNAME | [**type:pr reviewed-by:gjtorikian**](https://github.com/search?utf8=%E2%9C%93&q=type%3Apr+reviewed-by%3Agjtorikian&type=Issues) matches pull requests reviewed by a particular person.
-| review-requested:USERNAME | [**type:pr review-requested:benbalter**](https://github.com/search?utf8=%E2%9C%93&q=type%3Apr+review-requested%3Abenbalter&type=Issues) matches pull requests where a specific person is requested for review. Requested reviewers are no longer listed in the search results after they review a pull request. If the requested person is on a team that is requested for review, then review requests for that team will also appear in the search results.{% ifversion fpt or ghae or ghes > 3.2 or ghec %}
+| review-requested:USERNAME | [**type:pr review-requested:benbalter**](https://github.com/search?utf8=%E2%9C%93&q=type%3Apr+review-requested%3Abenbalter&type=Issues) matches pull requests where a specific person is requested for review. Requested reviewers are no longer listed in the search results after they review a pull request. If the requested person is on a team that is requested for review, then review requests for that team will also appear in the search results.{% ifversion fpt or ghae-issue-5181 or ghes > 3.2 or ghec %}
| user-review-requested:@me | [**type:pr user-review-requested:@me**](https://github.com/search?q=is%3Apr+user-review-requested%3A%40me+) matches pull requests that you have directly been asked to review.{% endif %}
| team-review-requested:TEAMNAME | [**type:pr team-review-requested:atom/design**](https://github.com/search?q=type%3Apr+team-review-requested%3Aatom%2Fdesign&type=Issues) matches pull requests that have review requests from the team `atom/design`. Requested reviewers are no longer listed in the search results after they review a pull request.
diff --git a/content/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor.md b/content/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor.md
index 9d19dfbaf4..8fc9c947b9 100644
--- a/content/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor.md
+++ b/content/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor.md
@@ -37,6 +37,8 @@ When you sponsor an account using a credit card, the change will become effectiv
{% data reusables.sponsors.manage-updates-for-orgs %}
+You can choose whether to display your sponsorship publicly. One-time sponsorships remain visible for one month.
+
If the sponsored account retires your tier, the tier will remain in place for you until you choose a different tier or cancel your subscription. For more information, see "[Upgrading a sponsorship](/articles/upgrading-a-sponsorship)" and "[Downgrading a sponsorship](/articles/downgrading-a-sponsorship)."
If the account you want to sponsor does not have a profile on {% data variables.product.prodname_sponsors %}, you can encourage the account to join. For more information, see "[Setting up {% data variables.product.prodname_sponsors %} for your user account](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account)" and "[Setting up {% data variables.product.prodname_sponsors %} for your organization](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization)."
diff --git a/data/features/enterprise-owners-visible-for-org-members.yml b/data/features/enterprise-owners-visible-for-org-members.yml
index 85b02eb1dc..2cc9348ee3 100644
--- a/data/features/enterprise-owners-visible-for-org-members.yml
+++ b/data/features/enterprise-owners-visible-for-org-members.yml
@@ -2,5 +2,5 @@
# Documentation for enterprise owners UI updates
versions:
ghes: '>=3.4'
- ghae: 'issue-####'
+ ghae: 'issue-5741'
ghec: '*'
diff --git a/data/features/internal-actions.yml b/data/features/internal-actions.yml
new file mode 100644
index 0000000000..e4420a21cf
--- /dev/null
+++ b/data/features/internal-actions.yml
@@ -0,0 +1,4 @@
+versions:
+ ghec: '*'
+ ghes: '>=3.5'
+ ghae: 'issue-5610'
diff --git a/data/features/svg-support.yml b/data/features/svg-support.yml
new file mode 100644
index 0000000000..0203d64cb9
--- /dev/null
+++ b/data/features/svg-support.yml
@@ -0,0 +1,5 @@
+# Releases issue #1951
+# Support upload of SVG files
+versions:
+ fpt: '*'
+ ghec: '*'
diff --git a/data/reusables/actions/internal-actions-summary.md b/data/reusables/actions/internal-actions-summary.md
new file mode 100644
index 0000000000..3efefb4211
--- /dev/null
+++ b/data/reusables/actions/internal-actions-summary.md
@@ -0,0 +1,3 @@
+{% if internal-actions %}
+To share actions across your enterprise without publishing the actions publicly, you can store the actions in an internal repository, then configure the repository to allow access to {% data variables.product.prodname_actions %} workflows in other repositories owned by the same organization or by any organization in the enterprise. For more information, see "[Sharing actions and workflows with your enterprise](/actions/creating-actions/sharing-actions-and-workflows-with-your-enterprise)."
+{% endif %}
\ No newline at end of file
diff --git a/data/reusables/actions/jobs/section-using-concurrency.md b/data/reusables/actions/jobs/section-using-concurrency.md
index fdeb1f2ccd..0ebf774fc2 100644
--- a/data/reusables/actions/jobs/section-using-concurrency.md
+++ b/data/reusables/actions/jobs/section-using-concurrency.md
@@ -1,4 +1,4 @@
-Use `concurrency` to ensure that only a single job or workflow using the same concurrency group will run at a time. A concurrency group can be any string or expression. A concurrency group can be any string or expression. The expression can only use the [`github` context](/actions/learn-github-actions/contexts#github-context). For more information about expressions, see "[Expressions](/actions/learn-github-actions/expressions)."
+Use `concurrency` to ensure that only a single job or workflow using the same concurrency group will run at a time. A concurrency group can be any string or expression. The expression can only use the [`github` context](/actions/learn-github-actions/contexts#github-context). For more information about expressions, see "[Expressions](/actions/learn-github-actions/expressions)."
You can also specify `concurrency` at the job level. For more information, see [`jobs..concurrency`](/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idconcurrency).
diff --git a/data/reusables/actions/outside-collaborators-internal-actions.md b/data/reusables/actions/outside-collaborators-internal-actions.md
new file mode 100644
index 0000000000..fcf164b2d1
--- /dev/null
+++ b/data/reusables/actions/outside-collaborators-internal-actions.md
@@ -0,0 +1 @@
+If you make an internal repository in your enterprise accessible to {% data variables.product.prodname_actions %} workflows in other repositories, outside collaborators on the other repositories can indirectly access the internal repository, even though they do not have direct access to the internal repository. The outside collaborators can view logs for workflow runs when actions or workflows from the internal repository are used.
\ No newline at end of file
diff --git a/data/reusables/actions/reusable-workflow-calling-syntax.md b/data/reusables/actions/reusable-workflow-calling-syntax.md
new file mode 100644
index 0000000000..337e6b6c94
--- /dev/null
+++ b/data/reusables/actions/reusable-workflow-calling-syntax.md
@@ -0,0 +1,4 @@
+* `{owner}/{repo}/{path}/{filename}@{ref}`{% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-6000 %} for reusable workflows in public {% ifversion ghes or ghec or ghae %}or internal{% endif %} repositories.
+* `./{path}/{filename}` for reusable workflows in the same repository.{% endif %}
+
+`{ref}` can be a SHA, a release tag, or a branch name. Using the commit SHA is the safest for stability and security. For more information, see "[Security hardening for GitHub Actions](/actions/learn-github-actions/security-hardening-for-github-actions#reusing-third-party-workflows)." {% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-6000 %}If you use the second syntax option (without `{owner}/{repo}` and `@{ref}`) the called workflow is from the same commit as the caller workflow.{% endif %}
\ No newline at end of file
diff --git a/data/reusables/actions/reusable-workflows.md b/data/reusables/actions/reusable-workflows.md
index 60451866a4..81a4a7dfea 100644
--- a/data/reusables/actions/reusable-workflows.md
+++ b/data/reusables/actions/reusable-workflows.md
@@ -1,5 +1,4 @@
{% ifversion fpt or ghes > 3.3 or ghae-issue-4757 or ghec %}
-## Reusing workflows
-You can call one workflow from within another workflow. This allows you to reuse workflows, avoiding duplication and making your workflows easier to maintain. For more information, see "[Reusing workflows](/actions/learn-github-actions/reusing-workflows)."
+{% ifversion ghes or ghec or ghae %}You can share workflows with your organization, publicly or privately, by calling{% else %} You can call{% endif %} one workflow from within another workflow. This allows you to reuse workflows, avoiding duplication and making your workflows easier to maintain. For more information, see "[Reusing workflows](/actions/learn-github-actions/reusing-workflows)."
{% endif %}
diff --git a/data/reusables/actions/uses-keyword-example.md b/data/reusables/actions/uses-keyword-example.md
index bfa3b8ef31..10a967722f 100644
--- a/data/reusables/actions/uses-keyword-example.md
+++ b/data/reusables/actions/uses-keyword-example.md
@@ -1,7 +1,11 @@
```yaml
jobs:
- call-workflow-1:
+ call-workflow-1-in-local-repo:
uses: octo-org/this-repo/.github/workflows/workflow-1.yml@172239021f7ba04fe7327647b213799853a9eb89
- call-workflow-2:
- uses: octo-org/another-repo/.github/workflows/workflow-2.yml@v1
+{%- ifversion fpt or ghec or ghes > 3.4 or ghae-issue-6000 %}
+ call-workflow-2-in-local-repo:
+ uses: ./.github/workflows/workflow-2.yml
+{%- endif %}
+ call-workflow-in-another-repo:
+ uses: octo-org/another-repo/.github/workflows/workflow.yml@v1
```
diff --git a/data/reusables/actions/workflows/section-run-on-specific-branches-or-tags.md b/data/reusables/actions/workflows/section-run-on-specific-branches-or-tags.md
index 531b3365e9..2b526c3408 100644
--- a/data/reusables/actions/workflows/section-run-on-specific-branches-or-tags.md
+++ b/data/reusables/actions/workflows/section-run-on-specific-branches-or-tags.md
@@ -7,7 +7,7 @@ Use the `tags` filter when you want to include tag name patterns or when you wan
If you define only `tags`/`tag-ignore` or only `branches`/`branches-ignore`, the workflow won't run for events affecting the undefined Git ref. If you define neither `tags`/`tag-ignore` or `branches`/`branches-ignore`, the workflow will run for events affecting either branches or tags. If you define both `branches`/`branches-ignore` and [`paths`](#onpushpull_requestpull_request_targetpathspaths-ignore), the workflow will only run when both filters are satisfied.
-The `branches`, `branches-ignore`, `tags`, and `tags-ignore` keywords accept glob patterns that use characters like `*`, `**`, `+`, `?`, `!` and others to match more than one branch or tag name. If a name contains any of these characters and you want a literal match, you need to *escape* each of these special characters with `\`. For more information about glob patterns, see the "[Filter pattern cheat sheet](#filter-pattern-cheat-sheet)."
+The `branches`, `branches-ignore`, `tags`, and `tags-ignore` keywords accept glob patterns that use characters like `*`, `**`, `+`, `?`, `!` and others to match more than one branch or tag name. If a name contains any of these characters and you want a literal match, you need to *escape* each of these special characters with `\`. For more information about glob patterns, see the "[Filter pattern cheat sheet](/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet)."
#### Example: Including branches and tags
diff --git a/data/reusables/actions/workflows/section-specifying-branches.md b/data/reusables/actions/workflows/section-specifying-branches.md
index 5446486a2b..c18cdba714 100644
--- a/data/reusables/actions/workflows/section-specifying-branches.md
+++ b/data/reusables/actions/workflows/section-specifying-branches.md
@@ -1,7 +1,7 @@
When using the `workflow_run` event, you can specify what branches the triggering workflow must run on in order to trigger your workflow.
-The `branches` and `branches-ignore` filters accept glob patterns that use characters like `*`, `**`, `+`, `?`, `!` and others to match more than one branch name. If a name contains any of these characters and you want a literal match, you need to *escape* each of these special characters with `\`. For more information about glob patterns, see the "[Filter pattern cheat sheet](#filter-pattern-cheat-sheet)."
+The `branches` and `branches-ignore` filters accept glob patterns that use characters like `*`, `**`, `+`, `?`, `!` and others to match more than one branch name. If a name contains any of these characters and you want a literal match, you need to *escape* each of these special characters with `\`. For more information about glob patterns, see the "[Filter pattern cheat sheet](/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet)."
For example, a workflow with the following trigger will only run when the workflow named `Build` runs on a branch whose name starts with `releases/`:
@@ -42,4 +42,4 @@ on:
branches:
- 'releases/**'
- '!releases/**-alpha'
-```
\ No newline at end of file
+```
diff --git a/data/reusables/actions/workflows/section-triggering-a-workflow-branches.md b/data/reusables/actions/workflows/section-triggering-a-workflow-branches.md
index fb422beaf1..6185f65f15 100644
--- a/data/reusables/actions/workflows/section-triggering-a-workflow-branches.md
+++ b/data/reusables/actions/workflows/section-triggering-a-workflow-branches.md
@@ -4,7 +4,7 @@ Use the `branches` filter when you want to include branch name patterns or when
If you define both `branches`/`branches-ignore` and [`paths`](#onpushpull_requestpull_request_targetpathspaths-ignore), the workflow will only run when both filters are satisfied.
-The `branches` and `branches-ignore` keywords accept glob patterns that use characters like `*`, `**`, `+`, `?`, `!` and others to match more than one branch name. If a name contains any of these characters and you want a literal match, you need to escape each of these special characters with `\`. For more information about glob patterns, see the "[Filter pattern cheat sheet](#filter-pattern-cheat-sheet)."
+The `branches` and `branches-ignore` keywords accept glob patterns that use characters like `*`, `**`, `+`, `?`, `!` and others to match more than one branch name. If a name contains any of these characters and you want a literal match, you need to escape each of these special characters with `\`. For more information about glob patterns, see the "[Filter pattern cheat sheet](/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet)."
#### Example: Including branches
diff --git a/data/reusables/actions/workflows/section-triggering-a-workflow-paths.md b/data/reusables/actions/workflows/section-triggering-a-workflow-paths.md
index 5a236bd80b..93b62fddbf 100644
--- a/data/reusables/actions/workflows/section-triggering-a-workflow-paths.md
+++ b/data/reusables/actions/workflows/section-triggering-a-workflow-paths.md
@@ -5,7 +5,7 @@ Use the `paths` filter when you want to include file path patterns or when you w
If you define both `branches`/`branches-ignore` and `paths`, the workflow will only run when both filters are satisfied.
-The `paths` and `paths-ignore` keywords accept glob patterns that use the `*` and `**` wildcard characters to match more than one path name. For more information, see the "[Filter pattern cheat sheet](#filter-pattern-cheat-sheet)."
+The `paths` and `paths-ignore` keywords accept glob patterns that use the `*` and `**` wildcard characters to match more than one path name. For more information, see the "[Filter pattern cheat sheet](/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet)."
#### Example: Including paths
diff --git a/data/reusables/actions/workflows/section-triggering-a-workflow-types.md b/data/reusables/actions/workflows/section-triggering-a-workflow-types.md
index 416fe90acf..28bddfafb4 100644
--- a/data/reusables/actions/workflows/section-triggering-a-workflow-types.md
+++ b/data/reusables/actions/workflows/section-triggering-a-workflow-types.md
@@ -1,9 +1,9 @@
-Selects the types of activity that will trigger a workflow run. Most GitHub events are triggered by more than one type of activity. For example, the `label` is triggered when a label is `created`, `edited`, or `deleted`. The `types` keyword enables you to narrow down activity that causes the workflow to run. When only one activity type triggers a webhook event, the `types` keyword is unnecessary.
+Use `on..types` to define the type of activity that will trigger a workflow run. Most GitHub events are triggered by more than one type of activity. For example, the `label` is triggered when a label is `created`, `edited`, or `deleted`. The `types` keyword enables you to narrow down activity that causes the workflow to run. When only one activity type triggers a webhook event, the `types` keyword is unnecessary.
-You can use an array of event `types`. For more information about each event and their activity types, see "[Events that trigger workflows](/articles/events-that-trigger-workflows#webhook-events)."
+You can use an array of event `types`. For more information about each event and their activity types, see "[Events that trigger workflows](/actions/using-workflows/events-that-trigger-workflows#available-events)."
```yaml
on:
label:
types: [created, edited]
-```
\ No newline at end of file
+```
diff --git a/data/reusables/dependabot/dependabot-alerts-dependency-graph-enterprise.md b/data/reusables/dependabot/dependabot-alerts-dependency-graph-enterprise.md
index eb537bfd85..8d32bf7827 100644
--- a/data/reusables/dependabot/dependabot-alerts-dependency-graph-enterprise.md
+++ b/data/reusables/dependabot/dependabot-alerts-dependency-graph-enterprise.md
@@ -1,3 +1,3 @@
{% ifversion ghes or ghae-issue-4864 %}
-The dependency graph and {% data variables.product.prodname_dependabot_alerts %} are configured at an enterprise level by the enterprise owner. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} on your enterprise account](/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account)."
+The dependency graph and {% data variables.product.prodname_dependabot_alerts %} are configured at an enterprise level by the enterprise owner. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} for your enterprise](/admin/configuration/configuring-github-connect/enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise)."
{% endif %}
diff --git a/data/reusables/enterprise-accounts/user-provisioning-release-stage.md b/data/reusables/enterprise-accounts/user-provisioning-release-stage.md
deleted file mode 100644
index e9533a00f7..0000000000
--- a/data/reusables/enterprise-accounts/user-provisioning-release-stage.md
+++ /dev/null
@@ -1,5 +0,0 @@
-{% note %}
-
-**Note:** User provisioning for organizations in your enterprise accounts, currently supported only for Okta, is in private beta and subject to change. To request access to the beta, [contact our account management team](https://enterprise.github.com/contact).
-
-{% endnote %}
diff --git a/data/reusables/enterprise/link-to-ghec-trial.md b/data/reusables/enterprise/link-to-ghec-trial.md
index 31c4e5a5a8..62aef21ed5 100644
--- a/data/reusables/enterprise/link-to-ghec-trial.md
+++ b/data/reusables/enterprise/link-to-ghec-trial.md
@@ -1 +1 @@
-For more information about how you can try {% data variables.product.prodname_ghe_cloud %} for free, see "[Setting up a trial of {% data variables.product.prodname_ghe_cloud %}](/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud)."
+For more information about how you can try {% data variables.product.prodname_ghe_cloud %} for free, see "[Setting up a trial of {% data variables.product.prodname_ghe_cloud %}]({% ifversion ghae %}/enterprise-cloud@latest{% endif %}/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud)."
diff --git a/data/reusables/enterprise/verify-audit-log-streaming-endpoint.md b/data/reusables/enterprise/verify-audit-log-streaming-endpoint.md
index 37b1ab5120..2d14b4409d 100644
--- a/data/reusables/enterprise/verify-audit-log-streaming-endpoint.md
+++ b/data/reusables/enterprise/verify-audit-log-streaming-endpoint.md
@@ -1 +1 @@
-1. Verify the endpoint, then click **Save**.
+1. After you have successfully verified the endpoint, click **Save**.
diff --git a/data/reusables/enterprise_installation/hotpatching-explanation.md b/data/reusables/enterprise_installation/hotpatching-explanation.md
index 887800ddec..97bcb67080 100644
--- a/data/reusables/enterprise_installation/hotpatching-explanation.md
+++ b/data/reusables/enterprise_installation/hotpatching-explanation.md
@@ -1 +1,3 @@
-You can upgrade {% data variables.product.prodname_ghe_server %} to the latest patch release using a hotpatch, which does not require a maintenance window and usually does not require a reboot. You can use hotpatching to upgrade to a newer patch release, but not a feature release. For example, you can upgrade from `2.10.1` to `2.10.5` because they are in the same feature series, but not from `2.10.9` to `2.11.0` because they are in a different feature series.
+You can upgrade {% data variables.product.prodname_ghe_server %} to the latest patch release using a hotpatch, which does not require a maintenance window and usually does not require a reboot.
+
+You can use hotpatching to upgrade to a newer patch release, but not a feature release. For example, you can upgrade from `2.10.1` to `2.10.5` because they are in the same feature series, but not from `2.10.9` to `2.11.0` because they are in a different feature series.
diff --git a/data/reusables/repositories/enable-security-alerts.md b/data/reusables/repositories/enable-security-alerts.md
index 33169aacce..ace795f1b5 100644
--- a/data/reusables/repositories/enable-security-alerts.md
+++ b/data/reusables/repositories/enable-security-alerts.md
@@ -1,3 +1,3 @@
{% ifversion ghes or ghae-issue-4864 %}
-Enterprise owners must enable {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies for {% data variables.product.product_location %} before you can use this feature. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} on your enterprise account](/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account)."
+Enterprise owners must enable {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies for {% data variables.product.product_location %} before you can use this feature. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} for your enterprise](/admin/configuration/configuring-github-connect/enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise)."
{% endif %}
diff --git a/data/reusables/repositories/settings-sidebar-actions.md b/data/reusables/repositories/settings-sidebar-actions.md
index d675bc3f90..c350461a12 100644
--- a/data/reusables/repositories/settings-sidebar-actions.md
+++ b/data/reusables/repositories/settings-sidebar-actions.md
@@ -1 +1,5 @@
-1. In the left sidebar, click **Actions**.
+1. In the left sidebar, click **Actions**{% ifversion ghes > 3.4 or ghae-issue-6090 or ghec %}, then **General**.
+
+ 
+
+{% else %}.{% endif %}
diff --git a/data/reusables/saml/add-okta-application.md b/data/reusables/saml/add-okta-application.md
deleted file mode 100644
index 510991e221..0000000000
--- a/data/reusables/saml/add-okta-application.md
+++ /dev/null
@@ -1,2 +0,0 @@
-2. Click **Add application**.
- 
diff --git a/data/reusables/saml/okta-admin-button.md b/data/reusables/saml/okta-admin-button.md
deleted file mode 100644
index 80e9cb71b5..0000000000
--- a/data/reusables/saml/okta-admin-button.md
+++ /dev/null
@@ -1,2 +0,0 @@
-1. In Okta, in the upper-right corner, click **Admin**.
- 
diff --git a/data/reusables/saml/okta-applications-click-ghec-application-label.md b/data/reusables/saml/okta-applications-click-ghec-application-label.md
index f0e17be424..7619625cff 100644
--- a/data/reusables/saml/okta-applications-click-ghec-application-label.md
+++ b/data/reusables/saml/okta-applications-click-ghec-application-label.md
@@ -1,2 +1 @@
1. In the list of applications, click the label for the application you created for the organization that uses {% data variables.product.prodname_ghe_cloud %}.
- 
diff --git a/data/reusables/saml/okta-configure-api-integration.md b/data/reusables/saml/okta-configure-api-integration.md
index e9a2457dbd..958f43db02 100644
--- a/data/reusables/saml/okta-configure-api-integration.md
+++ b/data/reusables/saml/okta-configure-api-integration.md
@@ -1,2 +1 @@
1. Click **Configure API Integration**.
- 
diff --git a/data/reusables/saml/okta-dashboard-click-applications.md b/data/reusables/saml/okta-dashboard-click-applications.md
index 72d3851147..b875277236 100644
--- a/data/reusables/saml/okta-dashboard-click-applications.md
+++ b/data/reusables/saml/okta-dashboard-click-applications.md
@@ -1,2 +1 @@
-1. In the Okta Dashboard, click **Applications**.
- 
+1. In the left sidebar, use the **Applications** dropdown and click **Applications**.
diff --git a/data/reusables/saml/okta-edit-provisioning.md b/data/reusables/saml/okta-edit-provisioning.md
index 623630a71c..6767459d2d 100644
--- a/data/reusables/saml/okta-edit-provisioning.md
+++ b/data/reusables/saml/okta-edit-provisioning.md
@@ -1,11 +1,8 @@
-9. To avoid syncing errors and confirm that your users have SAML enabled and SCIM linked identities, we recommend you audit your organization's users. For more information, see "[Auditing users for missing SCIM metadata](/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management#auditing-users-for-missing-scim-metadata)."
-10. To the right of "Provisioning to App", click **Edit**.
- 
-11. To the right of "Create Users", select **Enable**.
- 
-12. To the right of "Update User Attributes", select **Enable**.
- 
-13. To the right of "Deactivate Users", select **Enable**.
- 
-14. Click **Save**.
- 
+1. To avoid syncing errors and confirm that your users have SAML enabled and SCIM linked identities, we recommend you audit your organization's users. For more information, see "[Auditing users for missing SCIM metadata](/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management#auditing-users-for-missing-scim-metadata)."
+1. To the right of "Provisioning to App", click **Edit**.
+
+ 
+1. To the right of **Create Users**, **Update User Attributes**, and **Deactivate Users**, select **Enable**.
+
+ 
+1. Click **Save**.
diff --git a/data/reusables/saml/okta-enable-api-integration.md b/data/reusables/saml/okta-enable-api-integration.md
index 6b1aae4774..f11080d9fa 100644
--- a/data/reusables/saml/okta-enable-api-integration.md
+++ b/data/reusables/saml/okta-enable-api-integration.md
@@ -1,2 +1 @@
1. Select **Enable API integration**.
- 
diff --git a/data/reusables/saml/okta-provisioning-tab.md b/data/reusables/saml/okta-provisioning-tab.md
index 9db6e0e411..434d4d7ac0 100644
--- a/data/reusables/saml/okta-provisioning-tab.md
+++ b/data/reusables/saml/okta-provisioning-tab.md
@@ -1,2 +1,2 @@
1. Under the name of the application, click **Provisioning**.
- 
+ 
diff --git a/data/reusables/saml/okta-save-provisioning.md b/data/reusables/saml/okta-save-provisioning.md
index a799e43fde..8fc5a5e979 100644
--- a/data/reusables/saml/okta-save-provisioning.md
+++ b/data/reusables/saml/okta-save-provisioning.md
@@ -1,2 +1 @@
1. Click **Save**.
- 
diff --git a/data/reusables/saml/okta-sign-into-your-account.md b/data/reusables/saml/okta-sign-into-your-account.md
new file mode 100644
index 0000000000..7ff8f1679f
--- /dev/null
+++ b/data/reusables/saml/okta-sign-into-your-account.md
@@ -0,0 +1 @@
+1. Sign into your [Okta account](https://login.okta.com/).
diff --git a/data/reusables/saml/okta-sign-on-tab.md b/data/reusables/saml/okta-sign-on-tab.md
index 099407d979..ca034d1859 100644
--- a/data/reusables/saml/okta-sign-on-tab.md
+++ b/data/reusables/saml/okta-sign-on-tab.md
@@ -1,2 +1,2 @@
1. Under the name of the application, click **Sign on**.
- 
+ 
diff --git a/data/reusables/saml/okta-view-setup-instructions.md b/data/reusables/saml/okta-view-setup-instructions.md
index 97185417fe..1e281f8d9d 100644
--- a/data/reusables/saml/okta-view-setup-instructions.md
+++ b/data/reusables/saml/okta-view-setup-instructions.md
@@ -1,2 +1 @@
1. Under "SIGN ON METHODS", click **View Setup Instructions**.
- 
diff --git a/data/reusables/saml/removed-users-can-rejoin.md b/data/reusables/saml/removed-users-can-rejoin.md
new file mode 100644
index 0000000000..8bb5ff9b97
--- /dev/null
+++ b/data/reusables/saml/removed-users-can-rejoin.md
@@ -0,0 +1 @@
+Any users removed due to SAML SSO enforcement can rejoin your organization by authenticating via SAML single sign-on.
\ No newline at end of file
diff --git a/data/reusables/saml/search-ghec-okta.md b/data/reusables/saml/search-ghec-okta.md
deleted file mode 100644
index f2974c62e0..0000000000
--- a/data/reusables/saml/search-ghec-okta.md
+++ /dev/null
@@ -1,2 +0,0 @@
-3. In the search field, type "GitHub Enterprise Cloud".
- 
diff --git a/data/reusables/two_fa/send-invite-to-reinstate-user-before-2fa-is-enabled.md b/data/reusables/two_fa/send-invite-to-reinstate-user-before-2fa-is-enabled.md
index cb929fcd58..8b7e8842c6 100644
--- a/data/reusables/two_fa/send-invite-to-reinstate-user-before-2fa-is-enabled.md
+++ b/data/reusables/two_fa/send-invite-to-reinstate-user-before-2fa-is-enabled.md
@@ -1,3 +1,3 @@
{% ifversion fpt or ghec %}
-You can send an invitation to reinstate a user's privileges and access to the organization before they have enabled two-factor authentication and they must enable 2FA before they can accept your invitation to rejoin the organization.
+If a user was removed from your organization because you required members and outside collaborators to enable 2FA, you can send an invitation to reinstate a user's privileges and access to the organization before they have enabled two-factor authentication, but they must enable 2FA before they can accept your invitation to rejoin the organization.
{% endif %}
diff --git a/data/ui.yml b/data/ui.yml
index eb3bfadf20..f8f2ceb8f9 100644
--- a/data/ui.yml
+++ b/data/ui.yml
@@ -24,7 +24,9 @@ header:
ghes_release_notes_upgrade_release_only: 📣 This is not the latest release of Enterprise Server.
ghes_release_notes_upgrade_patch_and_release: 📣 This is not the latest patch release of this release series, and this is not the latest release of Enterprise Server.
picker:
- toggle_picker_list: Toggle picker list
+ language_picker_default_text: Choose a language
+ product_picker_default_text: All products
+ version_picker_default_text: Choose a version
release_notes:
banner_text: GitHub began rolling these changes out to enterprises on
search:
@@ -35,6 +37,7 @@ search:
search_results_for: Search results for
no_content: No content
matches_displayed: Matches displayed
+ search_error: An error occurred trying to perform the search.
homepage:
explore_by_product: Explore by product
version_picker: Version
diff --git a/docker-compose.prod.tmpl.yaml b/docker-compose.prod.tmpl.yaml
new file mode 100644
index 0000000000..3c36bd2435
--- /dev/null
+++ b/docker-compose.prod.tmpl.yaml
@@ -0,0 +1,32 @@
+version: '3.7'
+
+services:
+ ghdocs-prod:
+ image: '#{IMAGE}#'
+ ports:
+ - '4000:4000'
+ environment:
+ NODE_ENV: ${NODE_ENV}
+ DD_API_KEY: ${DD_API_KEY}
+ COOKIE_SECRET: ${COOKIE_SECRET}
+ HYDRO_ENDPOINT: ${HYDRO_ENDPOINT}
+ HYDRO_SECRET: ${HYDRO_SECRET}
+ HAYSTACK_URL: ${HAYSTACK_URL}
+ WEB_CONCURRENCY: ${WEB_CONCURRENCY}
+ HEROKU_APP_NAME: ${HEROKU_APP_NAME}
+ ENABLED_LANGUAGES: ${ENABLED_LANGUAGES}
+ DEPLOYMENT_ENV: ${DEPLOYMENT_ENV}
+ HEROKU_PRODUCTION_APP: true
+ PORT: 4000
+ DD_AGENT_HOST: datadog-agent
+ depends_on:
+ - datadog-agent
+ restart: always
+
+ datadog-agent:
+ image: datadog/dogstatsd:7.32.4
+ ports:
+ - '8125:8125'
+ environment:
+ DD_API_KEY: ${DD_API_KEY}
+ DD_AGENT_HOST: datadog-agent
diff --git a/lib/changelog.js b/lib/changelog.js
index 477c327460..34ae239800 100644
--- a/lib/changelog.js
+++ b/lib/changelog.js
@@ -1,3 +1,7 @@
+import os from 'os'
+import fs from 'fs'
+import path from 'path'
+
import Parser from 'rss-parser'
async function getRssFeed(url) {
@@ -15,13 +19,9 @@ async function getRssFeed(url) {
return feed
}
-const globalCache = new Map()
-
export async function getChangelogItems(prefix, feedUrl) {
- const cacheKey = prefix + feedUrl
- if (globalCache.get(cacheKey)) {
- return globalCache.get(cacheKey)
- }
+ const fromCache = getChangelogItemsFromCache(prefix, feedUrl)
+ if (fromCache) return fromCache
const feed = await getRssFeed(feedUrl)
@@ -46,7 +46,70 @@ export async function getChangelogItems(prefix, feedUrl) {
// We don't cache the raw payload we'd get from the network request
// because it would waste memory. Instead we store the "serialized"
// object that's created from the raw payload.
- globalCache.set(cacheKey, changelog)
+ setChangelogItemsCache(prefix, feedUrl, changelog)
return changelog
}
+
+const globalCache = new Map()
+
+function getChangelogCacheKey(prefix, feedUrl) {
+ // Return a string that is only letters so it's safe to use this
+ // for the filename when caching to disk.
+ return `${prefix || ''}${feedUrl}`.replace(/[^a-z]+/gi, '')
+}
+
+function getDiskCachePath(prefix, feedUrl) {
+ // When in local development or in tests, use disk caching
+ if (process.env.NODE_ENV === 'test' || process.env.NODE_ENV === 'development') {
+ const cacheKey = getChangelogCacheKey(prefix, feedUrl)
+ const date = new Date().toISOString().split('T')[0]
+ const fileName = `changelogcache-${cacheKey}-${date}.json`
+ return path.join(os.tmpdir(), fileName)
+ }
+}
+
+function getChangelogItemsFromCache(prefix, feedUrl) {
+ const cacheKey = getChangelogCacheKey(prefix, feedUrl)
+
+ if (globalCache.get(cacheKey)) {
+ return globalCache.get(cacheKey)
+ }
+
+ const diskCachePath = getDiskCachePath(prefix, feedUrl)
+ if (diskCachePath) {
+ try {
+ const payload = JSON.parse(fs.readFileSync(diskCachePath, 'utf-8'))
+ if (process.env.NODE_ENV === 'development')
+ console.log(`Changelog disk-cache HIT on ${diskCachePath}`)
+ // Also, for next time, within this Node process, put it into
+ // the global cache so we don't need to read from disk again.
+ globalCache.set(cacheKey, payload)
+ return payload
+ } catch (err) {
+ // If it wasn't on disk, that's fine.
+ if (err.code === 'ENOENT') return
+ // The JSON.parse() most likely failed. Ignore the error
+ // but delete the file so it won't be attempted again.
+ if (err instanceof SyntaxError) {
+ fs.unlinkSync(diskCachePath)
+ return
+ }
+ throw err
+ }
+ }
+}
+
+function setChangelogItemsCache(prefix, feedUrl, payload) {
+ const cacheKey = getChangelogCacheKey(prefix, feedUrl)
+ globalCache.set(cacheKey, payload)
+
+ const diskCachePath = getDiskCachePath(prefix, feedUrl)
+ // Note that `diskCachePath` is falsy if NODE_ENV==production which
+ // means we're not writing to disk in production.
+ if (diskCachePath) {
+ fs.writeFileSync(diskCachePath, JSON.stringify(payload), 'utf-8')
+ if (process.env.NODE_ENV === 'development')
+ console.log(`Wrote changelog cache to disk ${diskCachePath}`)
+ }
+}
diff --git a/lib/render-content/plugins/rewrite-local-links.js b/lib/render-content/plugins/rewrite-local-links.js
index cdcbf0a9bc..0be152dc56 100644
--- a/lib/render-content/plugins/rewrite-local-links.js
+++ b/lib/render-content/plugins/rewrite-local-links.js
@@ -36,6 +36,18 @@ export default function rewriteLocalLinks({ languageCode, version }) {
}
}
+// The versions that some links might start with, which we need to know
+// because if it's the case, we inject the language into the link as
+// the first prefix.
+// E.g. It can turn `/enterprise-cloud@latest/foo`
+// into `/en/enterprise-cloud@latest/foo`.
+// Using a Set to turn any lookups on this into a O(1) operation.
+const allSupportedVersionsPrefixes = new Set([
+ ...supportedPlans,
+ ...supportedVersions,
+ 'enterprise-server@latest',
+])
+
function getNewHref(node, languageCode, version) {
const { href } = node.properties
// Exceptions to link rewriting
@@ -50,11 +62,7 @@ function getNewHref(node, languageCode, version) {
// /enterprise-server/rest/reference/oauth-authorizations (this redirects to the latest version)
// /enterprise-server@latest/rest/reference/oauth-authorizations (this redirects to the latest version)
const firstLinkSegment = href.split('/')[1]
- if (
- [...supportedPlans, ...supportedVersions, 'enterprise-server@latest'].some((v) =>
- firstLinkSegment.startsWith(v)
- )
- ) {
+ if (allSupportedVersionsPrefixes.has(firstLinkSegment)) {
newHref = path.join('/', languageCode, href)
}
@@ -65,6 +73,17 @@ function getNewHref(node, languageCode, version) {
newHref = path.join('/', languageCode, href)
}
+ // Treat the unicorn where we have version numbers.
+ // As of Jan 2022, the only plan that uses version numbers is
+ // 'enterprise-server'. But some day there might more and when that day
+ // comes this line needs to account for all those where "latest" needs
+ // to be replaced by its actual latest version number.
+ // The reason for doing this rewrite is that we want to suppress the
+ // use of '...@latest' because it's just going to redirect when viewed
+ // anyway. And if a page is archived, all "latest" is replaced to the
+ // current number anyway.
+ newHref = newHref.replace('/enterprise-server@latest/', `/enterprise-server@${latest}/`)
+
if (newHref === href) {
// start clean with no language (TOC pages already include the lang codes via lib/liquid-tags/link.js)
const hrefWithoutLang = getPathWithoutLanguage(href)
diff --git a/lib/rest/static/decorated/api.github.com.json b/lib/rest/static/decorated/api.github.com.json
index 19bf1ff0b6..2cf5840d0e 100644
--- a/lib/rest/static/decorated/api.github.com.json
+++ b/lib/rest/static/decorated/api.github.com.json
@@ -35,15 +35,15 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get Hypermedia links to resources accessible in GitHub's REST API
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get Hypermedia links to resources accessible in GitHub's REST API
"
+ ]
},
{
"verb": "get",
@@ -88,7 +88,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n}\n
"
}
]
@@ -158,18 +158,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDxOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"client_id\": \"Iv1.8a61f9b3a7aba766\",\n \"client_secret\": \"1726be1638095a19edd134c77bde3aa2ece1e5d8\",\n \"webhook_secret\": \"e340154128314309424b7c8e90325147d99fdafa\",\n \"pem\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIIEowIBAAKCAQEAuEPzOUE+kiEH1WLiMeBytTEF856j0hOVcSUSUkZxKvqczkWM\\n9vo1gDyC7ZXhdH9fKh32aapba3RSsp4ke+giSmYTk2mGR538ShSDxh0OgpJmjiKP\\nX0Bj4j5sFqfXuCtl9SkH4iueivv4R53ktqM+n6hk98l6hRwC39GVIblAh2lEM4L/\\n6WvYwuQXPMM5OG2Ryh2tDZ1WS5RKfgq+9ksNJ5Q9UtqtqHkO+E63N5OK9sbzpUUm\\noNaOl3udTlZD3A8iqwMPVxH4SxgATBPAc+bmjk6BMJ0qIzDcVGTrqrzUiywCTLma\\nszdk8GjzXtPDmuBgNn+o6s02qVGpyydgEuqmTQIDAQABAoIBACL6AvkjQVVLn8kJ\\ndBYznJJ4M8ECo+YEgaFwgAHODT0zRQCCgzd+Vxl4YwHmKV2Lr+y2s0drZt8GvYva\\nKOK8NYYZyi15IlwFyRXmvvykF1UBpSXluYFDH7KaVroWMgRreHcIys5LqVSIb6Bo\\ngDmK0yBLPp8qR29s2b7ScZRtLaqGJiX+j55rNzrZwxHkxFHyG9OG+u9IsBElcKCP\\nkYCVE8ZdYexfnKOZbgn2kZB9qu0T/Mdvki8yk3I2bI6xYO24oQmhnT36qnqWoCBX\\nNuCNsBQgpYZeZET8mEAUmo9d+ABmIHIvSs005agK8xRaP4+6jYgy6WwoejJRF5yd\\nNBuF7aECgYEA50nZ4FiZYV0vcJDxFYeY3kYOvVuKn8OyW+2rg7JIQTremIjv8FkE\\nZnwuF9ZRxgqLxUIfKKfzp/5l5LrycNoj2YKfHKnRejxRWXqG+ZETfxxlmlRns0QG\\nJ4+BYL0CoanDSeA4fuyn4Bv7cy/03TDhfg/Uq0Aeg+hhcPE/vx3ebPsCgYEAy/Pv\\neDLssOSdeyIxf0Brtocg6aPXIVaLdus+bXmLg77rJIFytAZmTTW8SkkSczWtucI3\\nFI1I6sei/8FdPzAl62/JDdlf7Wd9K7JIotY4TzT7Tm7QU7xpfLLYIP1bOFjN81rk\\n77oOD4LsXcosB/U6s1blPJMZ6AlO2EKs10UuR1cCgYBipzuJ2ADEaOz9RLWwi0AH\\nPza2Sj+c2epQD9ZivD7Zo/Sid3ZwvGeGF13JyR7kLEdmAkgsHUdu1rI7mAolXMaB\\n1pdrsHureeLxGbRM6za3tzMXWv1Il7FQWoPC8ZwXvMOR1VQDv4nzq7vbbA8z8c+c\\n57+8tALQHOTDOgQIzwK61QKBgERGVc0EJy4Uag+VY8J4m1ZQKBluqo7TfP6DQ7O8\\nM5MX73maB/7yAX8pVO39RjrhJlYACRZNMbK+v/ckEQYdJSSKmGCVe0JrGYDuPtic\\nI9+IGfSorf7KHPoMmMN6bPYQ7Gjh7a++tgRFTMEc8956Hnt4xGahy9NcglNtBpVN\\n6G8jAoGBAMCh028pdzJa/xeBHLLaVB2sc0Fe7993WlsPmnVE779dAz7qMscOtXJK\\nfgtriltLSSD6rTA9hUAsL/X62rY0wdXuNdijjBb/qvrx7CAV6i37NK1CjABNjsfG\\nZM372Ac6zc1EqSrid2IjET1YqyIW2KGLI1R2xbQc98UGlt48OdWu\\n-----END RSA PRIVATE KEY-----\\n\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -218,7 +218,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -330,14 +330,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for a GitHub App. For more information about configuring a webhook for your app, see \"Creating a GitHub App.\"
\nYou must use a JWT to access this endpoint.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -387,6 +379,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -455,18 +455,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n },\n {\n \"id\": 123456789,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-04T00:57:16Z\",\n \"redelivery\": true,\n \"duration\": 0.28,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -525,18 +525,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456,\n \"url\": \"https://www.example.com\",\n \"request\": {\n \"headers\": {\n \"X-GitHub-Delivery\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"X-Hub-Signature-256\": \"sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"Accept\": \"*/*\",\n \"X-GitHub-Hook-ID\": \"42\",\n \"User-Agent\": \"GitHub-Hookshot/b8c71d8\",\n \"X-GitHub-Event\": \"issues\",\n \"X-GitHub-Hook-Installation-Target-ID\": \"123\",\n \"X-GitHub-Hook-Installation-Target-Type\": \"repository\",\n \"content-type\": \"application/json\",\n \"X-Hub-Signature\": \"sha1=a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\"\n },\n \"payload\": {\n \"action\": \"opened\",\n \"issue\": {\n \"body\": \"foo\"\n },\n \"repository\": {\n \"id\": 123\n }\n }\n },\n \"response\": {\n \"headers\": {\n \"Content-Type\": \"text/html;charset=utf-8\"\n },\n \"payload\": \"ok\"\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -589,25 +589,25 @@
"subcategory": "webhooks",
"subcategoryLabel": "Webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Redeliver a delivery for the webhook configured for a GitHub App.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Redeliver a delivery for the webhook configured for a GitHub App.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -693,7 +693,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The permissions the installation has are included under the `permissions` key.",
+ "description": "The permissions the installation has are included under the permissions key.
",
"payload": "[\n {\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"selected\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n]\n
"
}
]
@@ -752,18 +752,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"selected\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -815,20 +815,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Uninstalls a GitHub App on a user, organization, or business account. If you prefer to temporarily suspend an app's access to your account's resources, then we recommend the \"Suspend an app installation\" endpoint.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Uninstalls a GitHub App on a user, organization, or business account. If you prefer to temporarily suspend an app's access to your account's resources, then we recommend the \"Suspend an app installation\" endpoint.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -1730,33 +1730,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"ghs_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"expires_at\": \"2016-07-11T22:14:10Z\",\n \"permissions\": {\n \"issues\": \"write\",\n \"contents\": \"read\"\n },\n \"repository_selection\": \"selected\",\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -2644,20 +2644,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Suspends a GitHub App on a user, organization, or business account, which blocks the app from accessing the account's resources. When a GitHub App is suspended, the app's access to the GitHub API or webhook events is blocked for that account.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Suspends a GitHub App on a user, organization, or business account, which blocks the app from accessing the account's resources. When a GitHub App is suspended, the app's access to the GitHub API or webhook events is blocked for that account.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -2707,20 +2707,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a GitHub App installation suspension.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a GitHub App installation suspension.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -2799,28 +2799,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"url\": \"https://api.github.com/applications/grants/1\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"scopes\": [\n \"public_repo\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -2881,23 +2881,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/applications/grants/1\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"scopes\": [\n \"public_repo\"\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -2952,30 +2952,30 @@
"category": "oauth-authorizations",
"categoryLabel": "Oauth authorizations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for your user. Once deleted, the application has no access to your account and is no longer listed on the application authorizations settings screen within GitHub.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for your user. Once deleted, the application has no access to your account and is no longer listed on the application authorizations settings screen within GitHub.
"
+ ]
},
{
"verb": "delete",
@@ -3055,19 +3055,19 @@
"subcategoryLabel": "Oauth applications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "OAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid OAuth access_token as an input parameter and the grant for the token's owner will be deleted.\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the application authorizations settings screen within GitHub.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "OAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid OAuth access_token as an input parameter and the grant for the token's owner will be deleted.\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the application authorizations settings screen within GitHub.
",
"bodyParameters": [
{
"type": "string",
@@ -3171,18 +3171,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -3277,13 +3277,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -3365,19 +3365,19 @@
"subcategoryLabel": "Oauth applications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "OAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "OAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
",
"bodyParameters": [
{
"type": "string",
@@ -4325,28 +4325,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"installation\": {\n \"permissions\": {\n \"metadata\": \"read\",\n \"issues\": \"write\",\n \"contents\": \"read\"\n },\n \"repository_selection\": \"selected\",\n \"single_file_name\": \".github/workflow.yml\",\n \"repositories_url\": \"https://api.github.com/user/repos\",\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"has_multiple_single_files\": false,\n \"single_file_paths\": []\n }\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -5269,23 +5269,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -5366,28 +5366,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -5581,33 +5581,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -5795,34 +5795,34 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if returning an existing token",
+ "description": "if returning an existing token
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "**Deprecation Notice:** GitHub will discontinue the [OAuth Authorizations API](https://docs.github.com/rest/reference/oauth-authorizations), which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our [web application flow](https://docs.github.com/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow). The [OAuth Authorizations API](https://docs.github.com/rest/reference/oauth-authorizations) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/changes/2020-02-14-deprecating-oauth-auth-endpoint/).",
+ "description": "Deprecation Notice: GitHub will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -6001,19 +6001,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if returning an existing token",
+ "description": "if returning an existing token
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response if returning a new token",
+ "description": "Response if returning a new token
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2012-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -6074,23 +6074,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -6303,13 +6303,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -6364,30 +6364,30 @@
"category": "oauth-authorizations",
"categoryLabel": "Oauth authorizations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
"
+ ]
},
{
"verb": "get",
@@ -6432,13 +6432,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"citizen_code_of_conduct\",\n \"name\": \"Citizen Code of Conduct\",\n \"url\": \"https://api.github.com/codes_of_conduct/citizen_code_of_conduct\",\n \"html_url\": \"http://citizencodeofconduct.org/\"\n },\n {\n \"key\": \"contributor_covenant\",\n \"name\": \"Contributor Covenant\",\n \"url\": \"https://api.github.com/codes_of_conduct/contributor_covenant\",\n \"html_url\": \"https://www.contributor-covenant.org/version/2/0/code_of_conduct/\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -6495,18 +6495,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"contributor_covenant\",\n \"name\": \"Contributor Covenant\",\n \"url\": \"https://api.github.com/codes_of_conduct/contributor_covenant\",\n \"body\": \"# Contributor Covenant Code of Conduct\\n\\n## Our Pledge\\n\\nIn the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.\\n\\n## Our Standards\\n\\nExamples of behavior that contributes to creating a positive environment include:\\n\\n* Using welcoming and inclusive language\\n* Being respectful of differing viewpoints and experiences\\n* Gracefully accepting constructive criticism\\n* Focusing on what is best for the community\\n* Showing empathy towards other community members\\n\\nExamples of unacceptable behavior by participants include:\\n\\n* The use of sexualized language or imagery and unwelcome sexual attention or advances\\n* Trolling, insulting/derogatory comments, and personal or political attacks\\n* Public or private harassment\\n* Publishing others' private information, such as a physical or electronic address, without explicit permission\\n* Other conduct which could reasonably be considered inappropriate in a professional setting\\n\\n## Our Responsibilities\\n\\nProject maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response\\n to any instances of unacceptable behavior.\\n\\nProject maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.\\n\\n## Scope\\n\\nThis Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address,\\n posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.\\n\\n## Enforcement\\n\\nInstances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [EMAIL]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.\\n\\nProject maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.\\n\\n## Attribution\\n\\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]\\n\\n[homepage]: http://contributor-covenant.org\\n[version]: http://contributor-covenant.org/version/1/4/\\n\",\n \"html_url\": \"http://contributor-covenant.org/version/1/4/\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -6547,20 +6547,20 @@
"category": "emojis",
"categoryLabel": "Emojis",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Lists all the emojis available to use on GitHub.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Lists all the emojis available to use on GitHub.
"
+ ]
},
{
"verb": "get",
@@ -6618,7 +6618,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled_organizations\": \"all\",\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/enterprises/2/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -6721,14 +6721,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for organizations and allowed actions in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for organizations and allowed actions in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"type": "string",
@@ -6836,7 +6836,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"organizations\": [\n {\n \"login\": \"octocat\",\n \"id\": 161335,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"url\": \"https://api.github.com/orgs/octo-org\",\n \"repos_url\": \"https://api.github.com/orgs/octo-org/repos\",\n \"events_url\": \"https://api.github.com/orgs/octo-org/events\",\n \"hooks_url\": \"https://api.github.com/orgs/octo-org/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/octo-org/issues\",\n \"members_url\": \"https://api.github.com/orgs/octo-org/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/octo-org/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n ]\n}\n
"
}
]
@@ -6926,14 +6926,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of organization IDs to enable for GitHub Actions.
",
@@ -7010,15 +7010,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds an organization to the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds an organization to the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -7080,15 +7080,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization from the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization from the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -7146,7 +7146,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -7256,14 +7256,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"type": "boolean",
@@ -7373,7 +7373,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"runner_groups\": [\n {\n \"id\": 1,\n \"name\": \"Default\",\n \"visibility\": \"all\",\n \"default\": true,\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/1/runners\",\n \"allows_public_repositories\": false\n },\n {\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/2/runners\",\n \"allows_public_repositories\": true\n },\n {\n \"id\": 3,\n \"name\": \"expensive-hardware\",\n \"visibility\": \"private\",\n \"default\": false,\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/3/runners\",\n \"allows_public_repositories\": true\n }\n ]\n}\n
"
}
]
@@ -7579,7 +7579,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": false\n}\n
"
}
]
@@ -7650,7 +7650,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": false\n}\n
"
}
]
@@ -7805,7 +7805,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"Expensive hardware runners\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -7870,15 +7870,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a self-hosted runner group for an enterprise.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a self-hosted runner group for an enterprise.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -7966,7 +7966,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"organizations\": [\n {\n \"login\": \"octocat\",\n \"id\": 161335,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"url\": \"https://api.github.com/orgs/octo-org\",\n \"repos_url\": \"https://api.github.com/orgs/octo-org/repos\",\n \"events_url\": \"https://api.github.com/orgs/octo-org/events\",\n \"hooks_url\": \"https://api.github.com/orgs/octo-org/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/octo-org/issues\",\n \"members_url\": \"https://api.github.com/orgs/octo-org/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/octo-org/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n ]\n}\n
"
}
]
@@ -8066,14 +8066,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of organizations that have access to a self-hosted runner configured in an enterprise.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of organizations that have access to a self-hosted runner configured in an enterprise.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of organization IDs that can access the runner group.
",
@@ -8160,15 +8160,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds an organization to the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds an organization to the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -8240,15 +8240,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization from the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization from the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -8336,7 +8336,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -8436,14 +8436,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of self-hosted runners that are part of an enterprise runner group.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of self-hosted runners that are part of an enterprise runner group.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of runner IDs to add to the runner group.
",
@@ -8530,15 +8530,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an enterprise.
\nYou must authenticate using an access token with the manage_runners:enterprise\nscope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an enterprise.
\nYou must authenticate using an access token with the manage_runners:enterprise\nscope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -8610,15 +8610,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a self-hosted runner from a group configured in an enterprise. The runner is then returned to the default group.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a self-hosted runner from a group configured in an enterprise. The runner is then returned to the default group.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -8696,7 +8696,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -8757,7 +8757,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"os\": \"osx\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-osx-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-osx-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm-2.164.0.tar.gz\"\n },\n {\n \"os\": \"win\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-win-x64-2.164.0.zip\",\n \"filename\": \"actions-runner-win-x64-2.164.0.zip\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm64-2.164.0.tar.gz\"\n }\n]\n
"
}
]
@@ -8818,7 +8818,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"LLBF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-22T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -8879,7 +8879,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"AABF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-29T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -8950,7 +8950,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 23,\n \"name\": \"MBP\",\n \"os\": \"macos\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
}
]
@@ -9015,15 +9015,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from an enterprise. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from an enterprise. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -9091,13 +9091,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 4,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -9218,18 +9218,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 4,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -9350,18 +9350,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 4,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -9431,18 +9431,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -9522,18 +9522,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 4,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -9672,7 +9672,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"@timestamp\": 1606929874512,\n \"action\": \"team.add_member\",\n \"actor\": \"octocat\",\n \"created_at\": 1606929874512,\n \"_document_id\": \"xJJFlFOhQ6b-5vaAFy9Rjw\",\n \"org\": \"octo-corp\",\n \"team\": \"octo-corp/example-team\",\n \"user\": \"monalisa\"\n },\n {\n \"@timestamp\": 1606507117008,\n \"action\": \"org.create\",\n \"actor\": \"octocat\",\n \"created_at\": 1606507117008,\n \"_document_id\": \"Vqvg6kZ4MYqwWRKFDzlMoQ\",\n \"org\": \"octocat-test-org\"\n },\n {\n \"@timestamp\": 1605719148837,\n \"action\": \"repo.destroy\",\n \"actor\": \"monalisa\",\n \"created_at\": 1605719148837,\n \"_document_id\": \"LwW2vpJZCDS-WUmo9Z-ifw\",\n \"org\": \"mona-org\",\n \"repo\": \"mona-org/mona-test-repo\",\n \"visibility\": \"private\"\n }\n]\n
"
}
]
@@ -9795,18 +9795,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"number\": 2,\n \"created_at\": \"2020-11-06T18:48:51Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/2\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2/locations\",\n \"state\": \"resolved\",\n \"resolution\": \"false_positive\",\n \"resolved_at\": \"2020-11-07T02:47:13Z\",\n \"resolved_by\": {\n \"login\": \"monalisa\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjI=\",\n \"avatar_url\": \"https://alambic.github.com/avatars/u/2?\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/monalisa\",\n \"followers_url\": \"https://api.github.com/users/monalisa/followers\",\n \"following_url\": \"https://api.github.com/users/monalisa/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/monalisa/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/monalisa/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/monalisa/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/monalisa/orgs\",\n \"repos_url\": \"https://api.github.com/users/monalisa/repos\",\n \"events_url\": \"https://api.github.com/users/monalisa/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/monalisa/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"secret_type\": \"adafruit_io_key\",\n \"secret\": \"aio_XXXXXXXXXXXXXXXXXXXXXXXXXXXX\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n }\n },\n {\n \"number\": 1,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/repo/secret-scanning/alerts/1\",\n \"html_url\": \"https://github.com/owner/repo/security/secret-scanning/1\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/1/locations\",\n \"state\": \"open\",\n \"resolution\": null,\n \"resolved_at\": null,\n \"resolved_by\": null,\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -9866,7 +9866,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_minutes_used\": 305,\n \"total_paid_minutes_used\": 0,\n \"included_minutes\": 3000,\n \"minutes_used_breakdown\": {\n \"UBUNTU\": 205,\n \"MACOS\": 10,\n \"WINDOWS\": 90\n }\n}\n
"
}
]
@@ -9932,7 +9932,6 @@
"x-github": {
"githubCloudOnly": false,
"enabledForGitHubApps": false,
- "previews": [],
"category": "enterprise-admin",
"subcategory": "billing"
},
@@ -9948,13 +9947,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Success",
+ "description": "Success
",
"payload": "{\n \"total_advanced_security_committers\": 2,\n \"repositories\": [\n {\n \"name\": \"octocat-org/Hello-World\",\n \"advanced_security_committers\": 2,\n \"advanced_security_committers_breakdown\": [\n {\n \"user_login\": \"octocat\",\n \"last_pushed_date\": \"2021-11-03\"\n },\n {\n \"user_login\": \"octokitten\",\n \"last_pushed_date\": \"2021-10-25\"\n }\n ]\n },\n {\n \"name\": \"octocat-org/server\",\n \"advanced_security_committers\": 1,\n \"advanced_security_committers_breakdown\": [\n {\n \"user_login\": \"octokitten\",\n \"last_pushed_date\": \"2021-10-26\"\n }\n ]\n }\n ]\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
}
]
},
@@ -10014,7 +10013,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_gigabytes_bandwidth_used\": 50,\n \"total_paid_gigabytes_bandwidth_used\": 40,\n \"included_gigabytes_bandwidth\": 10\n}\n
"
}
]
@@ -10075,7 +10074,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"days_left_in_billing_cycle\": 20,\n \"estimated_paid_storage_for_month\": 15,\n \"estimated_storage_for_month\": 40\n}\n
"
}
]
@@ -10140,30 +10139,30 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "We delay the public events feed by five minutes, which means the most recent event returned by the public events API actually occurred at least five minutes ago.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "We delay the public events feed by five minutes, which means the most recent event returned by the public events API actually occurred at least five minutes ago.
"
+ ]
},
{
"verb": "get",
@@ -10210,7 +10209,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"timeline_url\": \"https://github.com/timeline\",\n \"user_url\": \"https://github.com/{user}\",\n \"current_user_public_url\": \"https://github.com/octocat\",\n \"current_user_url\": \"https://github.com/octocat.private?token=abc123\",\n \"current_user_actor_url\": \"https://github.com/octocat.private.actor?token=abc123\",\n \"current_user_organization_url\": \"\",\n \"current_user_organization_urls\": [\n \"https://github.com/organizations/github/octocat.private.atom?token=abc123\"\n ],\n \"security_advisories_url\": \"https://github.com/security-advisories\",\n \"_links\": {\n \"timeline\": {\n \"href\": \"https://github.com/timeline\",\n \"type\": \"application/atom+xml\"\n },\n \"user\": {\n \"href\": \"https://github.com/{user}\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_public\": {\n \"href\": \"https://github.com/octocat\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user\": {\n \"href\": \"https://github.com/octocat.private?token=abc123\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_actor\": {\n \"href\": \"https://github.com/octocat.private.actor?token=abc123\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_organization\": {\n \"href\": \"\",\n \"type\": \"\"\n },\n \"current_user_organizations\": [\n {\n \"href\": \"https://github.com/organizations/github/octocat.private.atom?token=abc123\",\n \"type\": \"application/atom+xml\"\n }\n ],\n \"security_advisories\": {\n \"href\": \"https://github.com/security-advisories\",\n \"type\": \"application/atom+xml\"\n }\n }\n}\n
"
}
]
@@ -10290,18 +10289,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -10420,34 +10419,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Allows you to add a new gist with one or more files.
\nNote: Don't name your files \"gistfile\" with a numerical suffix. This is the format of the automatic naming scheme that Gist uses internally.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
- },
- {
- "httpStatusCode": "304",
- "httpStatusMessage": "Not Modified",
- "description": "Not modified"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"description": "Description of the gist
",
@@ -10510,6 +10481,34 @@
"type": "boolean or string",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "304",
+ "httpStatusMessage": "Not Modified",
+ "description": "Not modified
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -10587,23 +10586,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -10682,23 +10681,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -10756,23 +10755,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden Gist"
+ "description": "Forbidden Gist
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -10907,24 +10906,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Allows you to update or delete a gist file and rename gist files. Files from the previous version of the gist that aren't explicitly changed during an edit are unchanged.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"description": "Description of the gist
",
@@ -10982,6 +10963,24 @@
"rawDescription": "Names of files to be updated",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -11033,29 +11032,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11133,23 +11132,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -11248,23 +11247,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -11334,23 +11333,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden Gist"
+ "description": "Forbidden Gist
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -11459,13 +11458,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -11530,29 +11529,29 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11628,23 +11627,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/57a7f021a713b1c5a6a199b54cc514735d2d462f\",\n \"version\": \"57a7f021a713b1c5a6a199b54cc514735d2d462f\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"change_status\": {\n \"deletions\": 0,\n \"additions\": 180,\n \"total\": 180\n },\n \"committed_at\": \"2010-04-14T02:15:15Z\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -11722,23 +11721,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 1,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -11796,28 +11795,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -11870,29 +11869,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if gist is starred"
+ "description": "Response if gist is starred
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if gist is not starred"
+ "description": "Not Found if gist is not starred
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -11942,30 +11941,30 @@
"category": "gists",
"categoryLabel": "Gists",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -12016,29 +12015,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -12103,23 +12102,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -12166,13 +12165,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"Actionscript\",\n \"Android\",\n \"AppceleratorTitanium\",\n \"Autotools\",\n \"Bancha\",\n \"C\",\n \"C++\"\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -12229,13 +12228,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"C\",\n \"source\": \"# Object files\\n*.o\\n\\n# Libraries\\n*.lib\\n*.a\\n\\n# Shared objects (inc. Windows DLLs)\\n*.dll\\n*.so\\n*.so.*\\n*.dylib\\n\\n# Executables\\n*.exe\\n*.out\\n*.app\\n\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -12305,23 +12304,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -12364,15 +12363,15 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Revokes the installation token you're using to authenticate as an installation and access this endpoint.
\nOnce an installation token is revoked, the token is invalidated and cannot be used. Other endpoints that require the revoked installation token must have a new installation token to work. You can create a new token using the \"Create an installation access token for an app\" endpoint.
\nYou must use an installation access token to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Revokes the installation token you're using to authenticate as an installation and access this endpoint.
\nOnce an installation token is revoked, the token is invalidated and cannot be used. Other endpoints that require the revoked installation token must have a new installation token to work. You can create a new token using the \"Create an installation access token for an app\" endpoint.
\nYou must use an installation access token to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -12561,23 +12560,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -12654,13 +12653,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"lgpl-3.0\",\n \"name\": \"GNU Lesser General Public License v3.0\",\n \"spdx_id\": \"LGPL-3.0\",\n \"url\": \"https://api.github.com/licenses/lgpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"mpl-2.0\",\n \"name\": \"Mozilla Public License 2.0\",\n \"spdx_id\": \"MPL-2.0\",\n \"url\": \"https://api.github.com/licenses/mpl-2.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"agpl-3.0\",\n \"name\": \"GNU Affero General Public License v3.0\",\n \"spdx_id\": \"AGPL-3.0\",\n \"url\": \"https://api.github.com/licenses/agpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"unlicense\",\n \"name\": \"The Unlicense\",\n \"spdx_id\": \"Unlicense\",\n \"url\": \"https://api.github.com/licenses/unlicense\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"apache-2.0\",\n \"name\": \"Apache License 2.0\",\n \"spdx_id\": \"Apache-2.0\",\n \"url\": \"https://api.github.com/licenses/apache-2.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"gpl-3.0\",\n \"name\": \"GNU General Public License v3.0\",\n \"spdx_id\": \"GPL-3.0\",\n \"url\": \"https://api.github.com/licenses/gpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -12717,23 +12716,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"http://choosealicense.com/licenses/mit/\",\n \"description\": \"A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty.\",\n \"implementation\": \"Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders.\",\n \"permissions\": [\n \"commercial-use\",\n \"modifications\",\n \"distribution\",\n \"sublicense\",\n \"private-use\"\n ],\n \"conditions\": [\n \"include-copyright\"\n ],\n \"limitations\": [\n \"no-liability\"\n ],\n \"body\": \"\\n\\nThe MIT License (MIT)\\n\\nCopyright (c) [year] [fullname]\\n\\nPermission is hereby granted, free of charge, to any person obtaining a copy\\nof this software and associated documentation files (the \\\"Software\\\"), to deal\\nin the Software without restriction, including without limitation the rights\\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\\ncopies of the Software, and to permit persons to whom the Software is\\nfurnished to do so, subject to the following conditions:\\n\\nThe above copyright notice and this permission notice shall be included in all\\ncopies or substantial portions of the Software.\\n\\nTHE SOFTWARE IS PROVIDED \\\"AS IS\\\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\\nSOFTWARE.\\n\",\n \"featured\": true\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -12828,12 +12827,12 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
],
"bodyParameters": [
@@ -12925,20 +12924,20 @@
"categoryLabel": "Markdown",
"contentType": "text/plain",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "You must send Markdown as plain text (using a Content-Type header of text/plain or text/x-markdown) to this endpoint, rather than using JSON format. In raw mode, GitHub Flavored Markdown is not supported and Markdown will be rendered in plain format like a README.md file. Markdown content must be 400 KB or less.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "You must send Markdown as plain text (using a Content-Type header of text/plain or text/x-markdown) to this endpoint, rather than using JSON format. In raw mode, GitHub Flavored Markdown is not supported and Markdown will be rendered in plain format like a README.md file. Markdown content must be 400 KB or less.
"
+ ]
},
{
"verb": "get",
@@ -12996,18 +12995,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/orgs/github\",\n \"type\": \"Organization\",\n \"id\": 4,\n \"login\": \"github\",\n \"organization_billing_email\": \"billing@github.com\",\n \"email\": \"billing@github.com\",\n \"marketplace_pending_change\": {\n \"effective_date\": \"2017-11-11T00:00:00Z\",\n \"unit_count\": null,\n \"id\": 77,\n \"plan\": {\n \"url\": \"https://api.github.com/marketplace_listing/plans/1111\",\n \"accounts_url\": \"https://api.github.com/marketplace_listing/plans/1111/accounts\",\n \"id\": 1111,\n \"number\": 2,\n \"name\": \"Startup\",\n \"description\": \"A professional-grade CI solution\",\n \"monthly_price_in_cents\": 699,\n \"yearly_price_in_cents\": 7870,\n \"price_model\": \"flat-rate\",\n \"has_free_trial\": true,\n \"state\": \"published\",\n \"unit_name\": null,\n \"bullets\": [\n \"Up to 10 private repositories\",\n \"3 concurrent builds\"\n ]\n }\n },\n \"marketplace_purchase\": {\n \"billing_cycle\": \"monthly\",\n \"next_billing_date\": \"2017-11-11T00:00:00Z\",\n \"unit_count\": null,\n \"on_free_trial\": true,\n \"free_trial_ends_on\": \"2017-11-11T00:00:00Z\",\n \"updated_at\": \"2017-11-02T01:12:12Z\",\n \"plan\": {\n \"url\": \"https://api.github.com/marketplace_listing/plans/1313\",\n \"accounts_url\": \"https://api.github.com/marketplace_listing/plans/1313/accounts\",\n \"id\": 1313,\n \"number\": 3,\n \"name\": \"Pro\",\n \"description\": \"A professional-grade CI solution\",\n \"monthly_price_in_cents\": 1099,\n \"yearly_price_in_cents\": 11870,\n \"price_model\": \"flat-rate\",\n \"has_free_trial\": true,\n \"unit_name\": null,\n \"state\": \"published\",\n \"bullets\": [\n \"Up to 25 private repositories\",\n \"11 concurrent builds\"\n ]\n }\n }\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found when the account has not purchased the listing"
+ "description": "Not Found when the account has not purchased the listing
"
}
]
},
@@ -13077,18 +13076,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/marketplace_listing/plans/1313\",\n \"accounts_url\": \"https://api.github.com/marketplace_listing/plans/1313/accounts\",\n \"id\": 1313,\n \"number\": 3,\n \"name\": \"Pro\",\n \"description\": \"A professional-grade CI solution\",\n \"monthly_price_in_cents\": 1099,\n \"yearly_price_in_cents\": 11870,\n \"price_model\": \"flat-rate\",\n \"has_free_trial\": true,\n \"unit_name\": null,\n \"state\": \"published\",\n \"bullets\": [\n \"Up to 25 private repositories\",\n \"11 concurrent builds\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -13197,23 +13196,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/orgs/github\",\n \"type\": \"Organization\",\n \"id\": 4,\n \"login\": \"github\",\n \"organization_billing_email\": \"billing@github.com\",\n \"marketplace_pending_change\": {\n \"effective_date\": \"2017-11-11T00:00:00Z\",\n \"unit_count\": null,\n \"id\": 77,\n \"plan\": {\n \"url\": \"https://api.github.com/marketplace_listing/plans/1111\",\n \"accounts_url\": \"https://api.github.com/marketplace_listing/plans/1111/accounts\",\n \"id\": 1111,\n \"number\": 2,\n \"name\": \"Startup\",\n \"description\": \"A professional-grade CI solution\",\n \"monthly_price_in_cents\": 699,\n \"yearly_price_in_cents\": 7870,\n \"price_model\": \"flat-rate\",\n \"has_free_trial\": true,\n \"state\": \"published\",\n \"unit_name\": null,\n \"bullets\": [\n \"Up to 10 private repositories\",\n \"3 concurrent builds\"\n ]\n }\n },\n \"marketplace_purchase\": {\n \"billing_cycle\": \"monthly\",\n \"next_billing_date\": \"2017-11-11T00:00:00Z\",\n \"unit_count\": null,\n \"on_free_trial\": true,\n \"free_trial_ends_on\": \"2017-11-11T00:00:00Z\",\n \"updated_at\": \"2017-11-02T01:12:12Z\",\n \"plan\": {\n \"url\": \"https://api.github.com/marketplace_listing/plans/1313\",\n \"accounts_url\": \"https://api.github.com/marketplace_listing/plans/1313/accounts\",\n \"id\": 1313,\n \"number\": 3,\n \"name\": \"Pro\",\n \"description\": \"A professional-grade CI solution\",\n \"monthly_price_in_cents\": 1099,\n \"yearly_price_in_cents\": 11870,\n \"price_model\": \"flat-rate\",\n \"has_free_trial\": true,\n \"unit_name\": null,\n \"state\": \"published\",\n \"bullets\": [\n \"Up to 25 private repositories\",\n \"11 concurrent builds\"\n ]\n }\n }\n }\n]\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -13273,18 +13272,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/orgs/github\",\n \"type\": \"Organization\",\n \"id\": 4,\n \"login\": \"github\",\n \"organization_billing_email\": \"billing@github.com\",\n \"email\": \"billing@github.com\",\n \"marketplace_pending_change\": {\n \"effective_date\": \"2017-11-11T00:00:00Z\",\n \"unit_count\": null,\n \"id\": 77,\n \"plan\": {\n \"url\": \"https://api.github.com/marketplace_listing/plans/1111\",\n \"accounts_url\": \"https://api.github.com/marketplace_listing/plans/1111/accounts\",\n \"id\": 1111,\n \"number\": 2,\n \"name\": \"Startup\",\n \"description\": \"A professional-grade CI solution\",\n \"monthly_price_in_cents\": 699,\n \"yearly_price_in_cents\": 7870,\n \"price_model\": \"flat-rate\",\n \"has_free_trial\": true,\n \"state\": \"published\",\n \"unit_name\": null,\n \"bullets\": [\n \"Up to 10 private repositories\",\n \"3 concurrent builds\"\n ]\n }\n },\n \"marketplace_purchase\": {\n \"billing_cycle\": \"monthly\",\n \"next_billing_date\": \"2017-11-11T00:00:00Z\",\n \"unit_count\": null,\n \"on_free_trial\": true,\n \"free_trial_ends_on\": \"2017-11-11T00:00:00Z\",\n \"updated_at\": \"2017-11-02T01:12:12Z\",\n \"plan\": {\n \"url\": \"https://api.github.com/marketplace_listing/plans/1313\",\n \"accounts_url\": \"https://api.github.com/marketplace_listing/plans/1313/accounts\",\n \"id\": 1313,\n \"number\": 3,\n \"name\": \"Pro\",\n \"description\": \"A professional-grade CI solution\",\n \"monthly_price_in_cents\": 1099,\n \"yearly_price_in_cents\": 11870,\n \"price_model\": \"flat-rate\",\n \"has_free_trial\": true,\n \"unit_name\": null,\n \"state\": \"published\",\n \"bullets\": [\n \"Up to 25 private repositories\",\n \"11 concurrent builds\"\n ]\n }\n }\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found when the account has not purchased the listing"
+ "description": "Not Found when the account has not purchased the listing
"
}
]
},
@@ -13354,13 +13353,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/marketplace_listing/plans/1313\",\n \"accounts_url\": \"https://api.github.com/marketplace_listing/plans/1313/accounts\",\n \"id\": 1313,\n \"number\": 3,\n \"name\": \"Pro\",\n \"description\": \"A professional-grade CI solution\",\n \"monthly_price_in_cents\": 1099,\n \"yearly_price_in_cents\": 11870,\n \"price_model\": \"flat-rate\",\n \"has_free_trial\": true,\n \"unit_name\": null,\n \"state\": \"published\",\n \"bullets\": [\n \"Up to 25 private repositories\",\n \"11 concurrent builds\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
}
]
},
@@ -13469,13 +13468,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/orgs/github\",\n \"type\": \"Organization\",\n \"id\": 4,\n \"login\": \"github\",\n \"organization_billing_email\": \"billing@github.com\",\n \"marketplace_pending_change\": {\n \"effective_date\": \"2017-11-11T00:00:00Z\",\n \"unit_count\": null,\n \"id\": 77,\n \"plan\": {\n \"url\": \"https://api.github.com/marketplace_listing/plans/1111\",\n \"accounts_url\": \"https://api.github.com/marketplace_listing/plans/1111/accounts\",\n \"id\": 1111,\n \"number\": 2,\n \"name\": \"Startup\",\n \"description\": \"A professional-grade CI solution\",\n \"monthly_price_in_cents\": 699,\n \"yearly_price_in_cents\": 7870,\n \"price_model\": \"flat-rate\",\n \"has_free_trial\": true,\n \"state\": \"published\",\n \"unit_name\": null,\n \"bullets\": [\n \"Up to 10 private repositories\",\n \"3 concurrent builds\"\n ]\n }\n },\n \"marketplace_purchase\": {\n \"billing_cycle\": \"monthly\",\n \"next_billing_date\": \"2017-11-11T00:00:00Z\",\n \"unit_count\": null,\n \"on_free_trial\": true,\n \"free_trial_ends_on\": \"2017-11-11T00:00:00Z\",\n \"updated_at\": \"2017-11-02T01:12:12Z\",\n \"plan\": {\n \"url\": \"https://api.github.com/marketplace_listing/plans/1313\",\n \"accounts_url\": \"https://api.github.com/marketplace_listing/plans/1313/accounts\",\n \"id\": 1313,\n \"number\": 3,\n \"name\": \"Pro\",\n \"description\": \"A professional-grade CI solution\",\n \"monthly_price_in_cents\": 1099,\n \"yearly_price_in_cents\": 11870,\n \"price_model\": \"flat-rate\",\n \"has_free_trial\": true,\n \"unit_name\": null,\n \"state\": \"published\",\n \"bullets\": [\n \"Up to 25 private repositories\",\n \"11 concurrent builds\"\n ]\n }\n }\n }\n]\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
}
]
},
@@ -13522,13 +13521,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"verifiable_password_authentication\": true,\n \"ssh_key_fingerprints\": {\n \"SHA256_RSA\": \"nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8\",\n \"SHA256_DSA\": \"br9IjFspm1vxR3iA35FWE+4VTyz1hYVLIE2t1/CeyWQ\",\n \"SHA256_ECDSA\": \"p2QAMXNIC1TJYWeIOttrVc98/R1BUFWu3/LiyKgUfQM\",\n \"SHA256_ED25519\": \"+DiY3wvvV6TuJJhbpZisF/zLDA0zPMSvHdkr4UvCOqU\"\n },\n \"ssh_keys\": [\n \"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl\",\n \"ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEmKSENjQEezOmxkZMy7opKgwFB9nkt5YRrYMjNuG5N87uRgg6CLrbo5wAdT/y6v0mKV0U2w0WZ2YB/++Tpockg=\",\n \"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==\"\n ],\n \"hooks\": [\n \"192.30.252.0/22\"\n ],\n \"web\": [\n \"192.30.252.0/22\",\n \"185.199.108.0/22\"\n ],\n \"api\": [\n \"192.30.252.0/22\",\n \"185.199.108.0/22\"\n ],\n \"git\": [\n \"192.30.252.0/22\"\n ],\n \"packages\": [\n \"192.30.252.0/22\"\n ],\n \"pages\": [\n \"192.30.252.153/32\",\n \"192.30.252.154/32\"\n ],\n \"importer\": [\n \"54.158.161.132\",\n \"54.226.70.38\"\n ],\n \"actions\": [\n \"13.64.0.0/16\",\n \"13.65.0.0/16\"\n ],\n \"dependabot\": [\n \"54.158.161.132\"\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -13611,34 +13610,34 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -13750,28 +13749,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -13846,34 +13845,34 @@
"subcategoryLabel": "Notifications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Marks all notifications as \"read\" removes it from the default view on GitHub. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
],
- "descriptionHTML": "Marks all notifications as \"read\" removes it from the default view on GitHub. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"bodyParameters": [
{
"description": "Describes the last point that notifications were checked.
",
@@ -13952,23 +13951,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -14023,24 +14022,24 @@
"subcategoryLabel": "Notifications",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -14098,23 +14097,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/notifications/threads/1/subscription\",\n \"thread_url\": \"https://api.github.com/notifications/threads/1\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -14208,23 +14207,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/notifications/threads/1/subscription\",\n \"thread_url\": \"https://api.github.com/notifications/threads/1\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -14278,30 +14277,30 @@
"subcategory": "notifications",
"subcategoryLabel": "Notifications",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Mutes all future notifications for a conversation until you comment on the thread or get an @mention. If you are watching the repository of the thread, you will still receive notifications. To ignore future notifications for a repository you are watching, use the Set a thread subscription endpoint and set ignore to true.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Mutes all future notifications for a conversation until you comment on the thread or get an @mention. If you are watching the repository of the thread, you will still receive notifications. To ignore future notifications for a repository you are watching, use the Set a thread subscription endpoint and set ignore to true.
"
+ ]
},
{
"verb": "get",
@@ -14350,15 +14349,15 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get the octocat as ASCII art
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get the octocat as ASCII art
"
+ ]
},
{
"verb": "get",
@@ -14424,13 +14423,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -14489,7 +14488,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response - list of custom role names",
+ "description": "Response - list of custom role names
",
"payload": "{\n \"total_count\": 2,\n \"custom_roles\": [\n {\n \"id\": 8030,\n \"name\": \"Developer\"\n },\n {\n \"id\": 8031,\n \"name\": \"Designer\"\n }\n ]\n}\n
"
}
]
@@ -14544,7 +14543,6 @@
"x-github": {
"githubCloudOnly": true,
"enabledForGitHubApps": true,
- "previews": [],
"category": "teams",
"subcategory": "external-groups"
},
@@ -14560,7 +14558,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"groups\": [\n {\n \"group_id\": \"123\",\n \"group_name\": \"Octocat admins\",\n \"updated_at\": \"2021-01-24T11:31:04-06:00\"\n },\n {\n \"group_id\": \"456\",\n \"group_name\": \"Octocat docs members\",\n \"updated_at\": \"2021-03-24T11:31:04-06:00\"\n }\n ]\n}\n
"
}
]
@@ -14624,7 +14622,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -15101,18 +15099,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"twitter_username\": \"github\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"type\": \"Organization\",\n \"total_private_repos\": 100,\n \"owned_private_repos\": 100,\n \"private_gists\": 81,\n \"disk_usage\": 10000,\n \"collaborators\": 8,\n \"billing_email\": \"mona@github.com\",\n \"plan\": {\n \"name\": \"Medium\",\n \"space\": 400,\n \"private_repos\": 20\n },\n \"default_repository_permission\": \"read\",\n \"members_can_create_repositories\": true,\n \"two_factor_requirement_enabled\": true,\n \"members_allowed_repository_creation_type\": \"all\",\n \"members_can_create_public_repositories\": false,\n \"members_can_create_private_repositories\": false,\n \"members_can_create_internal_repositories\": false,\n \"members_can_create_pages\": true,\n \"members_can_create_public_pages\": true,\n \"members_can_create_private_pages\": true,\n \"members_can_fork_private_repositories\": false,\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -15171,7 +15169,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled_repositories\": \"all\",\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/organizations/42/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -15273,14 +15271,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for repositories and allowed actions in an organization.
\nIf the organization belongs to an enterprise that has set restrictive permissions at the enterprise level, such as allowed_actions to selected actions, then you cannot override them for the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for repositories and allowed actions in an organization.
\nIf the organization belongs to an enterprise that has set restrictive permissions at the enterprise level, such as allowed_actions to selected actions, then you cannot override them for the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"type": "string",
@@ -15387,7 +15385,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
}
]
@@ -15476,14 +15474,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"description": "Required. List of repository IDs to enable for GitHub Actions.
",
@@ -15558,15 +15556,15 @@
"subcategory": "permissions",
"subcategoryLabel": "Permissions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
"
+ ]
},
{
"verb": "delete",
@@ -15626,15 +15624,15 @@
"subcategory": "permissions",
"subcategoryLabel": "Permissions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
"
+ ]
},
{
"verb": "get",
@@ -15691,7 +15689,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -15800,14 +15798,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in an organization. To use this endpoint, the organization permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nIf the organization belongs to an enterprise that has selected actions set at the enterprise level, then you cannot override any of the enterprise's allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the organization must belong to an enterprise. If the organization does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories in the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in an organization. To use this endpoint, the organization permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nIf the organization belongs to an enterprise that has selected actions set at the enterprise level, then you cannot override any of the enterprise's allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the organization must belong to an enterprise. If the organization does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories in the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -15916,7 +15914,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"runner_groups\": [\n {\n \"id\": 1,\n \"name\": \"Default\",\n \"visibility\": \"all\",\n \"default\": true,\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/1/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n },\n {\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": true,\n \"allows_public_repositories\": true\n },\n {\n \"id\": 3,\n \"name\": \"expensive-hardware\",\n \"visibility\": \"private\",\n \"default\": false,\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/3/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n }\n ]\n}\n
"
}
]
@@ -16125,7 +16123,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner-groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -16195,7 +16193,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -16352,7 +16350,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner-groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -16416,15 +16414,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The self-hosted runner groups REST API is available with GitHub Enterprise Cloud. For more information, see \"GitHub's products.\"
\nDeletes a self-hosted runner group for an organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The self-hosted runner groups REST API is available with GitHub Enterprise Cloud. For more information, see \"GitHub's products.\"
\nDeletes a self-hosted runner group for an organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -16511,7 +16509,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"organization\": null,\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
}
]
@@ -16610,14 +16608,14 @@
"subcategoryLabel": "Self hosted runner groups",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "The self-hosted runner groups REST API is available with GitHub Enterprise Cloud. For more information, see \"GitHub's products.\"
\nReplaces the list of repositories that have access to a self-hosted runner group configured in an organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "The self-hosted runner groups REST API is available with GitHub Enterprise Cloud. For more information, see \"GitHub's products.\"
\nReplaces the list of repositories that have access to a self-hosted runner group configured in an organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of repository IDs that can access the runner group.
",
@@ -16702,15 +16700,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The self-hosted runner groups REST API is available with GitHub Enterprise Cloud. For more information, see \"GitHub's products.\"
\nAdds a repository to the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"
\nYou must authenticate using an access token with the admin:org\nscope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The self-hosted runner groups REST API is available with GitHub Enterprise Cloud. For more information, see \"GitHub's products.\"
\nAdds a repository to the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"
\nYou must authenticate using an access token with the admin:org\nscope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -16780,15 +16778,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The self-hosted runner groups REST API is available with GitHub Enterprise Cloud. For more information, see \"GitHub's products.\"
\nRemoves a repository from the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The self-hosted runner groups REST API is available with GitHub Enterprise Cloud. For more information, see \"GitHub's products.\"
\nRemoves a repository from the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -16875,7 +16873,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -16974,14 +16972,14 @@
"subcategoryLabel": "Self hosted runner groups",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "The self-hosted runner groups REST API is available with GitHub Enterprise Cloud. For more information, see \"GitHub's products.\"
\nReplaces the list of self-hosted runners that are part of an organization runner group.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "The self-hosted runner groups REST API is available with GitHub Enterprise Cloud. For more information, see \"GitHub's products.\"
\nReplaces the list of self-hosted runners that are part of an organization runner group.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of runner IDs to add to the runner group.
",
@@ -17067,15 +17065,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The self-hosted runner groups REST API is available with GitHub Enterprise Cloud. For more information, see \"GitHub's products.\"
\nAdds a self-hosted runner to a runner group configured in an organization.
\nYou must authenticate using an access token with the admin:org\nscope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The self-hosted runner groups REST API is available with GitHub Enterprise Cloud. For more information, see \"GitHub's products.\"
\nAdds a self-hosted runner to a runner group configured in an organization.
\nYou must authenticate using an access token with the admin:org\nscope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -17146,15 +17144,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The self-hosted runner groups REST API is available with GitHub Enterprise Cloud. For more information, see \"GitHub's products.\"
\nRemoves a self-hosted runner from a group configured in an organization. The runner is then returned to the default group.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The self-hosted runner groups REST API is available with GitHub Enterprise Cloud. For more information, see \"GitHub's products.\"
\nRemoves a self-hosted runner from a group configured in an organization. The runner is then returned to the default group.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -17231,7 +17229,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -17291,7 +17289,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"os\": \"osx\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-osx-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-osx-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm-2.164.0.tar.gz\"\n },\n {\n \"os\": \"win\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-win-x64-2.164.0.zip\",\n \"filename\": \"actions-runner-win-x64-2.164.0.zip\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm64-2.164.0.tar.gz\"\n }\n]\n
"
}
]
@@ -17351,7 +17349,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"LLBF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-22T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -17411,7 +17409,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"AABF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-29T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -17481,7 +17479,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 23,\n \"name\": \"MBP\",\n \"os\": \"macos\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
}
]
@@ -17545,15 +17543,15 @@
"subcategory": "self-hosted-runners",
"subcategoryLabel": "Self hosted runners",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from an organization. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from an organization. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -17620,13 +17618,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 4,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -17746,18 +17744,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 4,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -17877,18 +17875,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 4,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -17957,13 +17955,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -18042,18 +18040,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 4,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -18132,7 +18130,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"secrets\": [\n {\n \"name\": \"GIST_ID\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"private\"\n },\n {\n \"name\": \"DEPLOY_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"all\"\n },\n {\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"selected\",\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories\"\n }\n ]\n}\n
"
}
]
@@ -18192,7 +18190,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -18262,7 +18260,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"selected\",\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories\"\n}\n
"
}
]
@@ -18305,7 +18303,7 @@
}
],
"summary": "Create or update an organization secret",
- "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -18400,15 +18398,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to\nuse this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to\nuse this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -18516,15 +18514,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in an organization using the secret name. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in an organization using the secret name. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -18611,7 +18609,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n }\n ]\n}\n
"
}
]
@@ -18708,14 +18706,14 @@
"subcategoryLabel": "Secrets",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces all repositories for an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces all repositories for an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"bodyParameters": [
{
"type": "array of integers",
@@ -18799,20 +18797,20 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "No Content when repository was added to the selected list"
+ "description": "No Content when repository was added to the selected list
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when visibility type is not set to selected"
+ "description": "Conflict when visibility type is not set to selected
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -18882,20 +18880,20 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when repository was removed from the selected list"
+ "description": "Response when repository was removed from the selected list
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when visibility type not set to selected"
+ "description": "Conflict when visibility type not set to selected
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -19019,7 +19017,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"@timestamp\": 1606929874512,\n \"action\": \"team.add_member\",\n \"actor\": \"octocat\",\n \"created_at\": 1606929874512,\n \"_document_id\": \"xJJFlFOhQ6b-5vaAFy9Rjw\",\n \"org\": \"octo-corp\",\n \"team\": \"octo-corp/example-team\",\n \"user\": \"monalisa\"\n },\n {\n \"@timestamp\": 1606507117008,\n \"action\": \"org.create\",\n \"actor\": \"octocat\",\n \"created_at\": 1606507117008,\n \"_document_id\": \"Vqvg6kZ4MYqwWRKFDzlMoQ\",\n \"org\": \"octocat-test-org\"\n },\n {\n \"@timestamp\": 1605719148837,\n \"action\": \"repo.destroy\",\n \"actor\": \"monalisa\",\n \"created_at\": 1605719148837,\n \"_document_id\": \"LwW2vpJZCDS-WUmo9Z-ifw\",\n \"org\": \"mona-org\",\n \"repo\": \"mona-org/mona-test-repo\",\n \"visibility\": \"private\"\n }\n]\n
"
}
]
@@ -19079,13 +19077,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -19148,19 +19146,19 @@
"subcategoryLabel": "Blocking",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "If the user is blocked:"
+ "description": "If the user is blocked:
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "If the user is not blocked:"
+ "description": "If the user is not blocked:
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -19221,19 +19219,19 @@
"subcategoryLabel": "Blocking",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -19294,14 +19292,14 @@
"subcategoryLabel": "Blocking",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -19384,7 +19382,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"credential_id\": 161195,\n \"credential_type\": \"personal access token\",\n \"token_last_eight\": \"71c3fc11\",\n \"credential_authorized_at\": \"2011-01-26T19:06:43Z\",\n \"authorized_credential_expires_at\": \"2011-02-25T19:06:43Z\",\n \"scopes\": [\n \"user\",\n \"repo\"\n ]\n },\n {\n \"login\": \"hubot\",\n \"credential_id\": 161196,\n \"credential_type\": \"personal access token\",\n \"token_last_eight\": \"Ae178B4a\",\n \"credential_authorized_at\": \"2019-03-29T19:06:43Z\",\n \"authorized_credential_expires_at\": \"2019-04-28T19:06:43Z\",\n \"scopes\": [\n \"repo\"\n ]\n }\n]\n
"
}
]
@@ -19445,20 +19443,20 @@
"category": "orgs",
"categoryLabel": "Orgs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Listing and deleting credential authorizations is available to organizations with GitHub Enterprise Cloud. For more information, see GitHub's products.
\nAn authenticated organization owner with the admin:org scope can remove a credential authorization for an organization that uses SAML SSO. Once you remove someone's credential authorization, they will need to create a new personal access token or SSH key and authorize it for the organization they want to access.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Listing and deleting credential authorizations is available to organizations with GitHub Enterprise Cloud. For more information, see GitHub's products.
\nAn authenticated organization owner with the admin:org scope can remove a credential authorization for an organization that uses SAML SSO. Once you remove someone's credential authorization, they will need to create a new personal access token or SSH key and authorize it for the organization they want to access.
"
+ ]
},
{
"verb": "get",
@@ -19535,7 +19533,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"secrets\": [\n {\n \"name\": \"MY_ARTIFACTORY_PASSWORD\",\n \"created_at\": \"2021-08-10T14:59:22Z\",\n \"updated_at\": \"2021-12-10T14:59:22Z\",\n \"visibility\": \"private\"\n },\n {\n \"name\": \"NPM_TOKEN\",\n \"created_at\": \"2021-08-10T14:59:22Z\",\n \"updated_at\": \"2021-12-10T14:59:22Z\",\n \"visibility\": \"all\"\n },\n {\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2021-08-10T14:59:22Z\",\n \"updated_at\": \"2021-12-10T14:59:22Z\",\n \"visibility\": \"selected\",\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/dependabot/secrets/SUPER_SECRET/repositories\"\n }\n ]\n}\n
"
}
]
@@ -19595,7 +19593,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -19665,7 +19663,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"NPM_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"selected\",\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/dependabot/secrets/NPM_TOKEN/repositories\"\n}\n
"
}
]
@@ -19708,7 +19706,7 @@
}
],
"summary": "Create or update an organization secret",
- "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `dependabot_secrets` organization\npermission to use this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `dependabot_secrets` organization\npermission to use this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"dependabot"
],
@@ -19803,15 +19801,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the admin:org scope to use this endpoint. GitHub Apps must have the dependabot_secrets organization\npermission to use this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the admin:org scope to use this endpoint. GitHub Apps must have the dependabot_secrets organization\npermission to use this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -19919,15 +19917,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in an organization using the secret name. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the dependabot_secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in an organization using the secret name. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the dependabot_secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -20014,7 +20012,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n }\n ]\n}\n
"
}
]
@@ -20111,14 +20109,14 @@
"subcategoryLabel": "Secrets",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces all repositories for an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the dependabot_secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces all repositories for an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the dependabot_secrets organization permission to use this endpoint.
",
"bodyParameters": [
{
"type": "array of integers",
@@ -20202,20 +20200,20 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the dependabot_secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "No Content when repository was added to the selected list"
+ "description": "No Content when repository was added to the selected list
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when visibility type is not set to selected"
+ "description": "Conflict when visibility type is not set to selected
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the dependabot_secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -20285,20 +20283,20 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the dependabot_secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when repository was removed from the selected list"
+ "description": "Response when repository was removed from the selected list
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when visibility type not set to selected"
+ "description": "Conflict when visibility type not set to selected
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the dependabot_secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -20370,14 +20368,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -20444,7 +20442,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"group_id\": \"123\",\n \"group_name\": \"Octocat admins\",\n \"updated_at\": \"2021-01-24T11:31:04-06:00\",\n \"teams\": [\n {\n \"team_id\": 1,\n \"team_name\": \"team-test\"\n },\n {\n \"team_id\": 2,\n \"team_name\": \"team-test2\"\n }\n ],\n \"members\": [\n {\n \"member_id\": 1,\n \"member_login\": \"mona-lisa_eocsaxrs\",\n \"member_name\": \"Mona Lisa\",\n \"member_email\": \"mona_lisa@github.com\"\n },\n {\n \"member_id\": 2,\n \"member_login\": \"octo-lisa_eocsaxrs\",\n \"member_name\": \"Octo Lisa\",\n \"member_email\": \"octo_lisa@github.com\"\n }\n ]\n}\n
"
}
]
@@ -20532,7 +20530,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"groups\": [\n {\n \"group_id\": \"123\",\n \"group_name\": \"Octocat admins\",\n \"updated_at\": \"2021-01-24T11:31:04-06:00\"\n },\n {\n \"group_id\": \"456\",\n \"group_name\": \"Octocat docs members\",\n \"updated_at\": \"2021-03-24T11:31:04-06:00\"\n }\n ]\n}\n
"
}
]
@@ -20612,13 +20610,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"login\": \"monalisa\",\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"email\": \"octocat@github.com\",\n \"role\": \"direct_member\",\n \"created_at\": \"2016-11-30T06:46:10-08:00\",\n \"failed_at\": \"\",\n \"failed_reason\": \"\",\n \"inviter\": {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"team_count\": 2,\n \"invitation_teams_url\": \"https://api.github.com/organizations/2/invitations/1/teams\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -20697,13 +20695,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"deliveries_url\": \"https://api.github.com/orgs/octocat/hooks/1/deliveries\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -20978,18 +20976,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"deliveries_url\": \"https://api.github.com/orgs/octocat/hooks/1/deliveries\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -21247,13 +21245,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"deliveries_url\": \"https://api.github.com/orgs/octocat/hooks/1/deliveries\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -21491,18 +21489,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"name\": \"web\",\n \"events\": [\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -21719,19 +21717,19 @@
"subcategoryLabel": "Webhooks",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -21797,7 +21795,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -21929,14 +21927,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for an organization. To update more information about the webhook, including the active state and events, use \"Update an organization webhook .\"
\nAccess tokens must have the admin:org_hook scope, and GitHub Apps must have the organization_hooks:write permission.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -21986,6 +21976,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -22072,18 +22070,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n },\n {\n \"id\": 123456789,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-04T00:57:16Z\",\n \"redelivery\": true,\n \"duration\": 0.28,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -22160,18 +22158,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456,\n \"url\": \"https://www.example.com\",\n \"request\": {\n \"headers\": {\n \"X-GitHub-Delivery\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"X-Hub-Signature-256\": \"sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"Accept\": \"*/*\",\n \"X-GitHub-Hook-ID\": \"42\",\n \"User-Agent\": \"GitHub-Hookshot/b8c71d8\",\n \"X-GitHub-Event\": \"issues\",\n \"X-GitHub-Hook-Installation-Target-ID\": \"123\",\n \"X-GitHub-Hook-Installation-Target-Type\": \"repository\",\n \"content-type\": \"application/json\",\n \"X-Hub-Signature\": \"sha1=a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\"\n },\n \"payload\": {\n \"action\": \"opened\",\n \"issue\": {\n \"body\": \"foo\"\n },\n \"repository\": {\n \"id\": 123\n }\n }\n },\n \"response\": {\n \"headers\": {\n \"Content-Type\": \"text/html;charset=utf-8\"\n },\n \"payload\": \"ok\"\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -22242,25 +22240,25 @@
"subcategory": "webhooks",
"subcategoryLabel": "Webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Redeliver a delivery for a webhook configured in an organization.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Redeliver a delivery for a webhook configured in an organization.
"
+ ]
},
{
"verb": "post",
@@ -22320,20 +22318,20 @@
"subcategory": "webhooks",
"subcategoryLabel": "Webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the hook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the hook.
"
+ ]
},
{
"verb": "get",
@@ -22388,7 +22386,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
}
]
@@ -22466,7 +22464,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"installations\": [\n {\n \"id\": 25381,\n \"account\": {\n \"login\": \"octo-org\",\n \"id\": 6811672,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjY4MTE2NzI=\",\n \"avatar_url\": \"https://avatars3.githubusercontent.com/u/6811672?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octo-org\",\n \"html_url\": \"https://github.com/octo-org\",\n \"followers_url\": \"https://api.github.com/users/octo-org/followers\",\n \"following_url\": \"https://api.github.com/users/octo-org/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octo-org/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octo-org/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octo-org/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octo-org/orgs\",\n \"repos_url\": \"https://api.github.com/users/octo-org/repos\",\n \"events_url\": \"https://api.github.com/users/octo-org/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octo-org/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"selected\",\n \"access_tokens_url\": \"https://api.github.com/app/installations/25381/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/octo-org/settings/installations/25381\",\n \"app_id\": 2218,\n \"target_id\": 6811672,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"deployments\": \"write\",\n \"metadata\": \"read\",\n \"pull_requests\": \"read\",\n \"statuses\": \"read\"\n },\n \"events\": [\n \"deployment\",\n \"deployment_status\"\n ],\n \"created_at\": \"2017-05-16T08:47:09.000-07:00\",\n \"updated_at\": \"2017-06-06T11:23:23.000-07:00\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n ]\n}\n
"
}
]
@@ -22526,7 +22524,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"limit\": \"collaborators_only\",\n \"origin\": \"organization\",\n \"expires_at\": \"2018-08-17T04:18:39Z\"\n}\n
"
}
]
@@ -22669,13 +22667,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"limit\": \"collaborators_only\",\n \"origin\": \"organization\",\n \"expires_at\": \"2018-08-17T04:18:39Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -22728,15 +22726,15 @@
"subcategory": "orgs",
"subcategoryLabel": "Orgs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes all interaction restrictions from public repositories in the given organization. You must be an organization owner to remove restrictions.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes all interaction restrictions from public repositories in the given organization. You must be an organization owner to remove restrictions.
"
+ ]
},
{
"verb": "get",
@@ -22813,13 +22811,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"login\": \"monalisa\",\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"email\": \"octocat@github.com\",\n \"role\": \"direct_member\",\n \"created_at\": \"2016-11-30T06:46:10-08:00\",\n \"failed_at\": \"\",\n \"failed_reason\": \"\",\n \"inviter\": {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"team_count\": 2,\n \"invitation_teams_url\": \"https://api.github.com/organizations/2/invitations/1/teams\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -22991,18 +22989,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"login\": \"monalisa\",\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"email\": \"octocat@github.com\",\n \"role\": \"direct_member\",\n \"created_at\": \"2016-11-30T06:46:10-08:00\",\n \"inviter\": {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"team_count\": 2,\n \"invitation_teams_url\": \"https://api.github.com/organizations/2/invitations/1/teams\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -23066,25 +23064,25 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Cancel an organization invitation. In order to cancel an organization invitation, the authenticated user must be an organization owner.
\nThis endpoint triggers notifications.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Cancel an organization invitation. In order to cancel an organization invitation, the authenticated user must be an organization owner.
\nThis endpoint triggers notifications.
"
+ ]
},
{
"verb": "get",
@@ -23171,13 +23169,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -23341,13 +23339,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -23457,18 +23455,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response if requester is not an organization member"
+ "description": "Response if requester is not an organization member
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -23530,25 +23528,25 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Check if a user is, publicly or privately, a member of the organization.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if requester is an organization member and user is a member"
+ "description": "Response if requester is an organization member and user is a member
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response if requester is not an organization member"
+ "description": "Response if requester is not an organization member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if requester is an organization member and user is not a member"
+ "description": "Not Found if requester is an organization member and user is not a member
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Check if a user is, publicly or privately, a member of the organization.
"
+ ]
},
{
"verb": "delete",
@@ -23608,20 +23606,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removing a user from this list will remove them from all teams and they will no longer have any access to the organization's repositories.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removing a user from this list will remove them from all teams and they will no longer have any access to the organization's repositories.
"
+ ]
},
{
"verb": "get",
@@ -23693,12 +23691,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -23814,12 +23812,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -23881,25 +23879,25 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "In order to remove a user's membership with an organization, the authenticated user must be an organization owner.
\nIf the specified user is an active member of the organization, this will remove them from the organization. If the specified user has been invited to the organization, this will cancel their invitation. The specified user will receive an email notification in both cases.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "In order to remove a user's membership with an organization, the authenticated user must be an organization owner.
\nIf the specified user is an active member of the organization, this will remove them from the organization. If the specified user has been invited to the organization, this will cancel their invitation. The specified user will receive an email notification in both cases.
"
+ ]
},
{
"verb": "get",
@@ -23993,7 +23991,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 79,\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"state\": \"pending\",\n \"lock_repositories\": true,\n \"exclude_attachments\": false,\n \"exclude_releases\": false,\n \"exclude_owner_projects\": false,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ],\n \"url\": \"https://api.github.com/orgs/octo-org/migrations/79\",\n \"created_at\": \"2015-07-06T15:33:38-07:00\",\n \"updated_at\": \"2015-07-06T15:33:38-07:00\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
}
]
@@ -24216,18 +24214,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 79,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"state\": \"pending\",\n \"lock_repositories\": true,\n \"exclude_attachments\": false,\n \"exclude_releases\": false,\n \"exclude_owner_projects\": false,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ],\n \"url\": \"https://api.github.com/orgs/octo-org/migrations/79\",\n \"created_at\": \"2015-07-06T15:33:38-07:00\",\n \"updated_at\": \"2015-07-06T15:33:38-07:00\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -24313,13 +24311,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "* `pending`, which means the migration hasn't started yet.\n* `exporting`, which means the migration is in progress.\n* `exported`, which means the migration finished successfully.\n* `failed`, which means the migration failed.",
+ "description": "\npending, which means the migration hasn't started yet. \nexporting, which means the migration is in progress. \nexported, which means the migration finished successfully. \nfailed, which means the migration failed. \n
",
"payload": "{\n \"id\": 79,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"state\": \"exported\",\n \"lock_repositories\": true,\n \"exclude_attachments\": false,\n \"exclude_releases\": false,\n \"exclude_owner_projects\": false,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ],\n \"url\": \"https://api.github.com/orgs/octo-org/migrations/79\",\n \"created_at\": \"2015-07-06T15:33:38-07:00\",\n \"updated_at\": \"2015-07-06T15:33:38-07:00\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -24382,20 +24380,20 @@
"subcategory": "orgs",
"subcategoryLabel": "Orgs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Fetches the URL to a migration archive.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Fetches the URL to a migration archive.
"
+ ]
},
{
"verb": "delete",
@@ -24456,20 +24454,20 @@
"subcategory": "orgs",
"subcategoryLabel": "Orgs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a previous migration archive. Migration archives are automatically deleted after seven days.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a previous migration archive. Migration archives are automatically deleted after seven days.
"
+ ]
},
{
"verb": "delete",
@@ -24540,20 +24538,20 @@
"subcategory": "orgs",
"subcategoryLabel": "Orgs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Unlocks a repository that was locked for migration. You should unlock each migrated repository and delete them when the migration is complete and you no longer need the source data.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Unlocks a repository that was locked for migration. You should unlock each migrated repository and delete them when the migration is complete and you no longer need the source data.
"
+ ]
},
{
"verb": "get",
@@ -24640,13 +24638,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -24740,7 +24738,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -24803,30 +24801,30 @@
"subcategory": "outside-collaborators",
"subcategoryLabel": "Outside collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "When an organization member is converted to an outside collaborator, they'll only have access to the repositories that their current team membership allows. The user will no longer be a member of the organization. For more information, see \"Converting an organization member to an outside collaborator\".
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "User is getting converted asynchronously"
+ "description": "User is getting converted asynchronously
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "User was converted"
+ "description": "User was converted
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if user is the last owner of the organization or not a member of the organization"
+ "description": "Forbidden if user is the last owner of the organization or not a member of the organization
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "When an organization member is converted to an outside collaborator, they'll only have access to the repositories that their current team membership allows. The user will no longer be a member of the organization. For more information, see \"Converting an organization member to an outside collaborator\".
"
+ ]
},
{
"verb": "delete",
@@ -24892,12 +24890,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if user is a member of the organization",
+ "description": "Unprocessable Entity if user is a member of the organization
",
"payload": "{\n \"message\": \"You cannot specify an organization member to remove as an outside collaborator.\",\n \"documentation_url\": \"https://docs.github.com/rest/reference/orgs#remove-outside-collaborator\"\n}\n
"
}
]
@@ -24988,18 +24986,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 197,\n \"name\": \"hello_docker\",\n \"package_type\": \"container\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 9919,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjk5MTk=\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/9919?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/users/github/repos\",\n \"events_url\": \"https://api.github.com/users/github/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"version_count\": 1,\n \"visibility\": \"private\",\n \"url\": \"https://api.github.com/orgs/github/packages/container/hello_docker\",\n \"created_at\": \"2020-05-19T22:19:11Z\",\n \"updated_at\": \"2020-05-19T22:19:11Z\",\n \"html_url\": \"https://github.com/orgs/github/packages/container/package/hello_docker\"\n },\n {\n \"id\": 198,\n \"name\": \"goodbye_docker\",\n \"package_type\": \"container\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 9919,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjk5MTk=\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/9919?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/users/github/repos\",\n \"events_url\": \"https://api.github.com/users/github/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"version_count\": 2,\n \"visibility\": \"private\",\n \"url\": \"https://api.github.com/orgs/github/packages/container/goodbye_docker\",\n \"created_at\": \"2020-05-20T22:19:11Z\",\n \"updated_at\": \"2020-05-20T22:19:11Z\",\n \"html_url\": \"https://github.com/orgs/github/packages/container/package/goodbye_docker\"\n }\n]\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -25084,7 +25082,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 197,\n \"name\": \"hello_docker\",\n \"package_type\": \"container\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 9919,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjk5MTk=\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/9919?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/users/github/repos\",\n \"events_url\": \"https://api.github.com/users/github/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"version_count\": 1,\n \"visibility\": \"private\",\n \"url\": \"https://api.github.com/orgs/github/packages/container/hello_docker\",\n \"created_at\": \"2020-05-19T22:19:11Z\",\n \"updated_at\": \"2020-05-19T22:19:11Z\",\n \"html_url\": \"https://github.com/orgs/github/packages/container/package/hello_docker\"\n}\n
"
}
]
@@ -25164,30 +25162,30 @@
"category": "packages",
"categoryLabel": "Packages",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes an entire package in an organization. You cannot delete a public package if any version of the package has more than 5,000 downloads. In this scenario, contact GitHub support for further assistance.
\nTo use this endpoint, you must have admin permissions in the organization and authenticate using an access token with the packages:read and packages:delete scopes. In addition:
\n\n- If
package_type is not container, your token must also include the repo scope. \n- If
package_type is container, you must also have admin permissions to the container you want to delete. \n
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes an entire package in an organization. You cannot delete a public package if any version of the package has more than 5,000 downloads. In this scenario, contact GitHub support for further assistance.
\nTo use this endpoint, you must have admin permissions in the organization and authenticate using an access token with the packages:read and packages:delete scopes. In addition:
\n\n- If
package_type is not container, your token must also include the repo scope. \n- If
package_type is container, you must also have admin permissions to the container you want to delete. \n
"
+ ]
},
{
"verb": "post",
@@ -25274,30 +25272,30 @@
"category": "packages",
"categoryLabel": "Packages",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Restores an entire package in an organization.
\nYou can restore a deleted package under the following conditions:
\n\n- The package was deleted within the last 30 days.
\n- The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
\n
\nTo use this endpoint, you must have admin permissions in the organization and authenticate using an access token with the packages:read and packages:write scopes. In addition:
\n\n- If
package_type is not container, your token must also include the repo scope. \n- If
package_type is container, you must also have admin permissions to the container that you want to restore. \n
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Restores an entire package in an organization.
\nYou can restore a deleted package under the following conditions:
\n\n- The package was deleted within the last 30 days.
\n- The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
\n
\nTo use this endpoint, you must have admin permissions in the organization and authenticate using an access token with the packages:read and packages:write scopes. In addition:
\n\n- If
package_type is not container, your token must also include the repo scope. \n- If
package_type is container, you must also have admin permissions to the container that you want to restore. \n
"
+ ]
},
{
"verb": "get",
@@ -25415,23 +25413,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 245301,\n \"name\": \"1.0.4\",\n \"url\": \"https://api.github.com/orgs/octo-org/packages/npm/hello-world-npm/versions/245301\",\n \"package_html_url\": \"https://github.com/octo-org/hello-world-npm/packages/43752\",\n \"created_at\": \"2019-11-05T22:49:04Z\",\n \"updated_at\": \"2019-11-05T22:49:04Z\",\n \"html_url\": \"https://github.com/octo-org/hello-world-npm/packages/43752?version=1.0.4\",\n \"metadata\": {\n \"package_type\": \"npm\"\n }\n },\n {\n \"id\": 209672,\n \"name\": \"1.0.3\",\n \"url\": \"https://api.github.com/orgs/octo-org/packages/npm/hello-world-npm/versions/209672\",\n \"package_html_url\": \"https://github.com/octo-org/hello-world-npm/packages/43752\",\n \"created_at\": \"2019-10-29T15:42:11Z\",\n \"updated_at\": \"2019-10-29T15:42:12Z\",\n \"html_url\": \"https://github.com/octo-org/hello-world-npm/packages/43752?version=1.0.3\",\n \"metadata\": {\n \"package_type\": \"npm\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -25526,7 +25524,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 836,\n \"name\": \"sha256:b3d3e366b55f9a54599220198b3db5da8f53592acbbb7dc7e4e9878762fc5344\",\n \"url\": \"https://api.github.com/orgs/github/packages/container/hello_docker/versions/836\",\n \"package_html_url\": \"https://github.com/orgs/github/packages/container/package/hello_docker\",\n \"created_at\": \"2020-05-19T22:19:11Z\",\n \"updated_at\": \"2020-05-19T22:19:11Z\",\n \"html_url\": \"https://github.com/orgs/github/packages/container/hello_docker/836\",\n \"metadata\": {\n \"package_type\": \"container\",\n \"container\": {\n \"tags\": [\n \"latest\"\n ]\n }\n }\n}\n
"
}
]
@@ -25616,30 +25614,30 @@
"category": "packages",
"categoryLabel": "Packages",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a specific package version in an organization. If the package is public and the package version has more than 5,000 downloads, you cannot delete the package version. In this scenario, contact GitHub support for further assistance.
\nTo use this endpoint, you must have admin permissions in the organization and authenticate using an access token with the packages:read and packages:delete scopes. In addition:
\n\n- If
package_type is not container, your token must also include the repo scope. \n- If
package_type is container, you must also have admin permissions to the container you want to delete. \n
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a specific package version in an organization. If the package is public and the package version has more than 5,000 downloads, you cannot delete the package version. In this scenario, contact GitHub support for further assistance.
\nTo use this endpoint, you must have admin permissions in the organization and authenticate using an access token with the packages:read and packages:delete scopes. In addition:
\n\n- If
package_type is not container, your token must also include the repo scope. \n- If
package_type is container, you must also have admin permissions to the container you want to delete. \n
"
+ ]
},
{
"verb": "post",
@@ -25726,30 +25724,30 @@
"category": "packages",
"categoryLabel": "Packages",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Restores a specific package version in an organization.
\nYou can restore a deleted package under the following conditions:
\n\n- The package was deleted within the last 30 days.
\n- The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
\n
\nTo use this endpoint, you must have admin permissions in the organization and authenticate using an access token with the packages:read and packages:write scopes. In addition:
\n\n- If
package_type is not container, your token must also include the repo scope. \n- If
package_type is container, you must also have admin permissions to the container that you want to restore. \n
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Restores a specific package version in an organization.
\nYou can restore a deleted package under the following conditions:
\n\n- The package was deleted within the last 30 days.
\n- The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
\n
\nTo use this endpoint, you must have admin permissions in the organization and authenticate using an access token with the packages:read and packages:write scopes. In addition:
\n\n- If
package_type is not container, your token must also include the repo scope. \n- If
package_type is container, you must also have admin permissions to the container that you want to restore. \n
"
+ ]
},
{
"verb": "get",
@@ -25840,13 +25838,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -25960,33 +25958,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -26065,7 +26063,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -26129,19 +26127,19 @@
"subcategoryLabel": "Members",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if user is a public member"
+ "description": "Response if user is a public member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if user is not a public member"
+ "description": "Not Found if user is not a public member
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -26201,20 +26199,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The user can publicize their own membership. (A user cannot publicize the membership for another user.)
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The user can publicize their own membership. (A user cannot publicize the membership for another user.)
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -26275,14 +26273,14 @@
"subcategoryLabel": "Members",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -26407,7 +26405,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -26847,18 +26845,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"organization\": null,\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -26969,18 +26967,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"number\": 2,\n \"created_at\": \"2020-11-06T18:48:51Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/2\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2/locations\",\n \"state\": \"resolved\",\n \"resolution\": \"false_positive\",\n \"resolved_at\": \"2020-11-07T02:47:13Z\",\n \"resolved_by\": {\n \"login\": \"monalisa\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjI=\",\n \"avatar_url\": \"https://alambic.github.com/avatars/u/2?\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/monalisa\",\n \"followers_url\": \"https://api.github.com/users/monalisa/followers\",\n \"following_url\": \"https://api.github.com/users/monalisa/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/monalisa/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/monalisa/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/monalisa/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/monalisa/orgs\",\n \"repos_url\": \"https://api.github.com/users/monalisa/repos\",\n \"events_url\": \"https://api.github.com/users/monalisa/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/monalisa/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"secret_type\": \"adafruit_io_key\",\n \"secret\": \"aio_XXXXXXXXXXXXXXXXXXXXXXXXXXXX\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n }\n },\n {\n \"number\": 1,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/repo/secret-scanning/alerts/1\",\n \"html_url\": \"https://github.com/owner/repo/security/secret-scanning/1\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/1/locations\",\n \"state\": \"open\",\n \"resolution\": null,\n \"resolved_at\": null,\n \"resolved_by\": null,\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -27037,7 +27035,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_minutes_used\": 305,\n \"total_paid_minutes_used\": 0,\n \"included_minutes\": 3000,\n \"minutes_used_breakdown\": {\n \"UBUNTU\": 205,\n \"MACOS\": 10,\n \"WINDOWS\": 90\n }\n}\n
"
}
]
@@ -27102,7 +27100,6 @@
"x-github": {
"githubCloudOnly": false,
"enabledForGitHubApps": true,
- "previews": [],
"category": "billing",
"subcategory": null
},
@@ -27116,13 +27113,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Success",
+ "description": "Success
",
"payload": "{\n \"total_advanced_security_committers\": 2,\n \"repositories\": [\n {\n \"name\": \"octocat-org/Hello-World\",\n \"advanced_security_committers\": 2,\n \"advanced_security_committers_breakdown\": [\n {\n \"user_login\": \"octocat\",\n \"last_pushed_date\": \"2021-11-03\"\n },\n {\n \"user_login\": \"octokitten\",\n \"last_pushed_date\": \"2021-10-25\"\n }\n ]\n },\n {\n \"name\": \"octocat-org/server\",\n \"advanced_security_committers\": 1,\n \"advanced_security_committers_breakdown\": [\n {\n \"user_login\": \"octokitten\",\n \"last_pushed_date\": \"2021-10-26\"\n }\n ]\n }\n ]\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
}
]
},
@@ -27179,7 +27176,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_gigabytes_bandwidth_used\": 50,\n \"total_paid_gigabytes_bandwidth_used\": 40,\n \"included_gigabytes_bandwidth\": 10\n}\n
"
}
]
@@ -27237,7 +27234,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"days_left_in_billing_cycle\": 20,\n \"estimated_paid_storage_for_month\": 15,\n \"estimated_storage_for_month\": 40\n}\n
"
}
]
@@ -27316,7 +27313,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"groups\": [\n {\n \"group_id\": \"123\",\n \"group_name\": \"Octocat admins\",\n \"group_description\": \"The people who configure your octoworld.\"\n },\n {\n \"group_id\": \"456\",\n \"group_name\": \"Octocat docs members\",\n \"group_description\": \"The people who make your octoworld come to life.\"\n }\n ]\n}\n
"
}
]
@@ -27394,13 +27391,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -27638,18 +27635,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -27716,13 +27713,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -27920,7 +27917,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n }\n}\n
"
}
]
@@ -27982,15 +27979,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "To delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "To delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}.
"
+ ]
},
{
"verb": "get",
@@ -28102,7 +28099,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -28251,7 +28248,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -28330,7 +28327,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -28462,7 +28459,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 1,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Welcome to our first team post\",\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -28535,15 +28532,15 @@
"subcategory": "discussions",
"subcategoryLabel": "Discussions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Delete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Delete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}.
"
+ ]
},
{
"verb": "get",
@@ -28654,7 +28651,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -28772,7 +28769,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -28860,7 +28857,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -28986,7 +28983,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like pineapples?\",\n \"body_html\": \"<p>Do you like pineapples?</p>\",\n \"body_version\": \"e6907b24d9c93cc0c5024a7af5888116\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -29068,15 +29065,15 @@
"subcategory": "discussion-comments",
"subcategoryLabel": "Discussion comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}.
"
+ ]
},
{
"verb": "get",
@@ -29199,7 +29196,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -29343,13 +29340,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -29438,15 +29435,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion comment. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion comment. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -29560,7 +29557,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -29695,13 +29692,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -29781,15 +29778,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "patch",
@@ -29896,7 +29893,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"group_id\": \"123\",\n \"group_name\": \"Octocat admins\",\n \"updated_at\": \"2021-01-24T11:31:04-06:00\",\n \"teams\": [\n {\n \"team_id\": 1,\n \"team_name\": \"team-test\"\n },\n {\n \"team_id\": 2,\n \"team_name\": \"team-test2\"\n }\n ],\n \"members\": [\n {\n \"member_id\": 1,\n \"member_login\": \"mona-lisa_eocsaxrs\",\n \"member_name\": \"Mona Lisa\",\n \"member_email\": \"mona_lisa@github.com\"\n },\n {\n \"member_id\": 2,\n \"member_login\": \"octo-lisa_eocsaxrs\",\n \"member_name\": \"Octo Lisa\",\n \"member_email\": \"octo_lisa@github.com\"\n }\n ]\n}\n
"
}
]
@@ -29960,15 +29957,15 @@
"subcategory": "external-groups",
"subcategoryLabel": "External groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a connection between a team and an external group.
\nYou can manage team membership with your IdP using Enterprise Managed Users for GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a connection between a team and an external group.
\nYou can manage team membership with your IdP using Enterprise Managed Users for GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -30055,7 +30052,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"login\": \"monalisa\",\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"email\": \"octocat@github.com\",\n \"role\": \"direct_member\",\n \"created_at\": \"2016-11-30T06:46:10-08:00\",\n \"failed_at\": \"\",\n \"failed_reason\": \"\",\n \"inviter\": {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"team_count\": 2,\n \"invitation_teams_url\": \"https://api.github.com/organizations/2/invitations/1/teams\"\n }\n]\n
"
}
]
@@ -30161,7 +30158,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -30246,7 +30243,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if user has no team membership"
+ "description": "if user has no team membership
"
}
]
},
@@ -30372,12 +30369,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team
"
}
]
},
@@ -30449,20 +30446,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub.\"
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/memberships/{username}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub.\"
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/memberships/{username}.
"
+ ]
},
{
"verb": "get",
@@ -30547,7 +30544,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n }\n]\n
"
}
]
@@ -30624,13 +30621,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if project is not managed by this team"
+ "description": "Not Found if project is not managed by this team
"
}
]
},
@@ -30749,12 +30746,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if the project is not owned by the organization",
+ "description": "Forbidden if the project is not owned by the organization
",
"payload": "{\n \"message\": \"Must have admin rights to Repository.\",\n \"documentation_url\": \"https://docs.github.com/rest/reference/teams#add-or-update-team-project-permissions\"\n}\n
"
}
]
@@ -30825,15 +30822,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. This endpoint removes the project from the team, but does not delete the project.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/projects/{project_id}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. This endpoint removes the project from the team, but does not delete the project.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/projects/{project_id}.
"
+ ]
},
{
"verb": "get",
@@ -30918,7 +30915,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -31004,18 +31001,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Alternative response with repository permissions",
+ "description": "Alternative response with repository permissions
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"maintain\": false,\n \"push\": false,\n \"triage\": false,\n \"pull\": true\n },\n \"role_name\": \"read\",\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"triage\": false,\n \"push\": false,\n \"maintain\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if team has permission for the repository. This is the response when the repository media type hasn't been provded in the Accept header."
+ "description": "Response if team has permission for the repository. This is the response when the repository media type hasn't been provded in the Accept header.
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team does not have permission for the repository"
+ "description": "Not Found if team does not have permission for the repository
"
}
]
},
@@ -31124,14 +31121,14 @@
"categoryLabel": "Teams",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "To add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization. Note that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nNote: You can also specify a team by org_id and team_id using the route PUT /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
\nFor more information about the permission levels, see \"Repository permission levels for an organization\".
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "To add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization. Note that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nNote: You can also specify a team by org_id and team_id using the route PUT /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
\nFor more information about the permission levels, see \"Repository permission levels for an organization\".
",
"bodyParameters": [
{
"type": "string",
@@ -31227,15 +31224,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. This does not delete the repository, it just removes it from the team.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. This does not delete the repository, it just removes it from the team.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
"
+ ]
},
{
"verb": "get",
@@ -31302,7 +31299,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"groups\": [\n {\n \"group_id\": \"123\",\n \"group_name\": \"Octocat admins\",\n \"group_description\": \"The people who configure your octoworld.\"\n },\n {\n \"group_id\": \"456\",\n \"group_name\": \"Octocat docs members\",\n \"group_description\": \"The people who make your octoworld come to life.\"\n }\n ]\n}\n
"
}
]
@@ -31475,7 +31472,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"groups\": [\n {\n \"group_id\": \"123\",\n \"group_name\": \"Octocat admins\",\n \"group_description\": \"The people who configure your octoworld.\"\n },\n {\n \"group_id\": \"456\",\n \"group_name\": \"Octocat docs members\",\n \"group_description\": \"The people who make your octoworld come to life.\"\n }\n ]\n}\n
"
}
],
@@ -31646,7 +31643,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if child teams exist",
+ "description": "if child teams exist
",
"payload": "[\n {\n \"id\": 2,\n \"node_id\": \"MDQ6VGVhbTI=\",\n \"url\": \"https://api.github.com/teams/2\",\n \"name\": \"Original Roster\",\n \"slug\": \"original-roster\",\n \"description\": \"Started it all.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/2/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/2/repos\",\n \"parent\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n },\n \"html_url\": \"https://github.com/orgs/rails/teams/core\"\n }\n]\n
"
}
]
@@ -31707,28 +31704,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -31844,33 +31841,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -31925,34 +31922,34 @@
"subcategoryLabel": "Cards",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -32046,32 +32043,32 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Response"
+ "description": "Response
"
}
],
"bodyParameters": [
@@ -32154,28 +32151,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -32272,23 +32269,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -32343,29 +32340,29 @@
"subcategoryLabel": "Columns",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -32459,23 +32456,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -32647,33 +32644,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Response"
+ "description": "Response
"
}
]
},
@@ -32759,27 +32756,27 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -32849,23 +32846,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -33046,38 +33043,38 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if the authenticated user does not have access to the project"
+ "description": "Not Found if the authenticated user does not have access to the project
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -33128,40 +33125,40 @@
"category": "projects",
"categoryLabel": "Projects",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a project board. Returns a 404 Not Found status if projects are disabled.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Delete Success"
+ "description": "Delete Success
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a project board. Returns a 404 Not Found status if projects are disabled.
"
+ ]
},
{
"verb": "get",
@@ -33254,33 +33251,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -33372,39 +33369,39 @@
"subcategoryLabel": "Collaborators",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Adds a collaborator to an organization project and sets their permission level. You must be an organization owner or a project admin to add a collaborator.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Adds a collaborator to an organization project and sets their permission level. You must be an organization owner or a project admin to add a collaborator.
",
"bodyParameters": [
{
"description": "The permission to grant the collaborator.
",
@@ -33482,40 +33479,40 @@
"subcategory": "collaborators",
"subcategoryLabel": "Collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a collaborator from an organization project. You must be an organization owner or a project admin to remove a collaborator.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a collaborator from an organization project. You must be an organization owner or a project admin to remove a collaborator.
"
+ ]
},
{
"verb": "get",
@@ -33581,33 +33578,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -33686,23 +33683,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -33798,28 +33795,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -33866,18 +33863,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"resources\": {\n \"core\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1372700873,\n \"used\": 1\n },\n \"search\": {\n \"limit\": 30,\n \"remaining\": 18,\n \"reset\": 1372697452,\n \"used\": 12\n },\n \"graphql\": {\n \"limit\": 5000,\n \"remaining\": 4993,\n \"reset\": 1372700389,\n \"used\": 7\n },\n \"integration_manifest\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1551806725,\n \"used\": 1\n },\n \"code_scanning_upload\": {\n \"limit\": 500,\n \"remaining\": 499,\n \"reset\": 1551806725,\n \"used\": 1\n }\n },\n \"rate\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1372700873,\n \"used\": 1\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -33931,35 +33928,35 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Reactions API. We recommend migrating your existing code to use the new delete reactions endpoints. For more information, see this blog post.
\nOAuth access tokens require the write:discussion scope, when deleting a team discussion or team discussion comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Reactions API. We recommend migrating your existing code to use the new delete reactions endpoints. For more information, see this blog post.
\nOAuth access tokens require the write:discussion scope, when deleting a team discussion or team discussion comment.
"
+ ]
},
{
"verb": "get",
@@ -34029,17 +34026,17 @@
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -34496,28 +34493,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"language\": null,\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"push\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"organization\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"parent\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"source\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n}\n
"
},
{
"httpStatusCode": "307",
"httpStatusMessage": "Temporary Redirect",
- "description": "Temporary Redirect"
+ "description": "Temporary Redirect
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -34955,23 +34952,23 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "307",
"httpStatusMessage": "Temporary Redirect",
- "description": "Temporary Redirect"
+ "description": "Temporary Redirect
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "If an organization owner has configured the organization to prevent members from deleting organization-owned repositories, a member will get this response:",
+ "description": "If an organization owner has configured the organization to prevent members from deleting organization-owned repositories, a member will get this response:
",
"payload": "{\n \"message\": \"Organization members cannot delete repositories.\",\n \"documentation_url\": \"https://docs.github.com/rest/reference/repos#delete-a-repository\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -35059,7 +35056,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"artifacts\": [\n {\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n },\n {\n \"id\": 13,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMw==\",\n \"name\": \"\",\n \"size_in_bytes\": 453,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -35138,7 +35135,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-01-21T14:59:22Z\",\n \"updated_at\": \"2020-01-21T14:59:22Z\"\n}\n
"
}
]
@@ -35211,15 +35208,15 @@
"subcategory": "artifacts",
"subcategoryLabel": "Artifacts",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes an artifact for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes an artifact for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -35298,15 +35295,15 @@
"subcategory": "artifacts",
"subcategoryLabel": "Artifacts",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download an archive for a repository. This URL expires after 1 minute. Look for Location: in\nthe response header to find the URL for the download. The :archive_format must be zip. Anyone with read access to\nthe repository can use this endpoint. If the repository is private you must use an access token with the repo scope.\nGitHub Apps must have the actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download an archive for a repository. This URL expires after 1 minute. Look for Location: in\nthe response header to find the URL for the download. The :archive_format must be zip. Anyone with read access to\nthe repository can use this endpoint. If the repository is private you must use an access token with the repo scope.\nGitHub Apps must have the actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -35382,7 +35379,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 399444496,\n \"run_id\": 29679449,\n \"run_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\",\n \"node_id\": \"MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\",\n \"head_sha\": \"f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/runs/399444496\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"started_at\": \"2020-01-20T17:42:40Z\",\n \"completed_at\": \"2020-01-20T17:44:39Z\",\n \"name\": \"build\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 1,\n \"started_at\": \"2020-01-20T09:42:40.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:41.000-08:00\"\n },\n {\n \"name\": \"Run actions/checkout@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 2,\n \"started_at\": \"2020-01-20T09:42:41.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Set up Ruby\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 3,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Run actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 4,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:48.000-08:00\"\n },\n {\n \"name\": \"Install Bundler\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 5,\n \"started_at\": \"2020-01-20T09:42:48.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:52.000-08:00\"\n },\n {\n \"name\": \"Install Gems\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 6,\n \"started_at\": \"2020-01-20T09:42:52.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:53.000-08:00\"\n },\n {\n \"name\": \"Run Tests\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 7,\n \"started_at\": \"2020-01-20T09:42:53.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:59.000-08:00\"\n },\n {\n \"name\": \"Deploy to Heroku\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 8,\n \"started_at\": \"2020-01-20T09:42:59.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Post actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 16,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Complete job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 17,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n }\n ],\n \"check_run_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\",\n \"labels\": [\n \"self-hosted\",\n \"foo\",\n \"bar\"\n ],\n \"runner_id\": 1,\n \"runner_name\": \"my runner\",\n \"runner_group_id\": 2,\n \"runner_group_name\": \"my runner group\"\n}\n
"
}
]
@@ -35455,15 +35452,15 @@
"subcategory": "workflow-jobs",
"subcategoryLabel": "Workflow jobs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a plain text file of logs for a workflow job. This link expires after 1 minute. Look\nfor Location: in the response header to find the URL for the download. Anyone with read access to the repository can\nuse this endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must\nhave the actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a plain text file of logs for a workflow job. This link expires after 1 minute. Look\nfor Location: in the response header to find the URL for the download. Anyone with read access to the repository can\nuse this endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must\nhave the actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -35529,7 +35526,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled\": true,\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/repositories/42/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -35635,14 +35632,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for enabling GitHub Actions and allowed actions in the repository.
\nIf the repository belongs to an organization or enterprise that has set restrictive permissions at the organization or enterprise levels, such as allowed_actions to selected actions, then you cannot override them for the repository.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for enabling GitHub Actions and allowed actions in the repository.
\nIf the repository belongs to an organization or enterprise that has set restrictive permissions at the organization or enterprise levels, such as allowed_actions to selected actions, then you cannot override them for the repository.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -35733,7 +35730,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -35851,14 +35848,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in a repository. To use this endpoint, the repository permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for a repository.\"
\nIf the repository belongs to an organization or enterprise that has selected actions set at the organization or enterprise levels, then you cannot override any of the allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the repository must belong to an enterprise. If the repository does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in a repository. To use this endpoint, the repository permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for a repository.\"
\nIf the repository belongs to an organization or enterprise that has selected actions set at the organization or enterprise levels, then you cannot override any of the allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the repository must belong to an enterprise. If the repository does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -35976,7 +35973,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -36045,7 +36042,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"os\": \"osx\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-osx-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-osx-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm-2.164.0.tar.gz\"\n },\n {\n \"os\": \"win\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-win-x64-2.164.0.zip\",\n \"filename\": \"actions-runner-win-x64-2.164.0.zip\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm64-2.164.0.tar.gz\"\n }\n]\n
"
}
]
@@ -36114,7 +36111,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"LLBF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-22T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -36183,7 +36180,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"AABF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-29T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -36262,7 +36259,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 23,\n \"name\": \"MBP\",\n \"os\": \"macos\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
}
]
@@ -36335,15 +36332,15 @@
"subcategory": "self-hosted-runners",
"subcategoryLabel": "Self hosted runners",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from a repository. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the repo\nscope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from a repository. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the repo\nscope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -36419,13 +36416,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 4,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -36554,18 +36551,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 4,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -36694,18 +36691,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 4,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -36783,13 +36780,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -36877,18 +36874,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 4,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -37061,7 +37058,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"workflow_runs\": [\n {\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n }\n ]\n}\n
"
}
]
@@ -37151,7 +37148,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"check_suite_id\": 42,\n \"check_suite_node_id\": \"MDEwOkNoZWNrU3VpdGU0Mg==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n}\n
"
}
]
@@ -37224,15 +37221,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Delete a specific workflow run. Anyone with write access to the repository can use this endpoint. If the repository is\nprivate you must use an access token with the repo scope. GitHub Apps must have the actions:write permission to use\nthis endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Delete a specific workflow run. Anyone with write access to the repository can use this endpoint. If the repository is\nprivate you must use an access token with the repo scope. GitHub Apps must have the actions:write permission to use\nthis endpoint.
"
+ ]
},
{
"verb": "get",
@@ -37308,7 +37305,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"state\": \"approved\",\n \"comment\": \"Ship it!\",\n \"environments\": [\n {\n \"id\": 161088068,\n \"node_id\": \"MDExOkVudmlyb25tZW50MTYxMDg4MDY4\",\n \"name\": \"staging\",\n \"url\": \"https://api.github.com/repos/github/hello-world/environments/staging\",\n \"html_url\": \"https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\",\n \"created_at\": \"2020-11-23T22:00:40Z\",\n \"updated_at\": \"2020-11-23T22:00:40Z\"\n }\n ],\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
}
]
@@ -37381,25 +37378,25 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Approves a workflow run for a pull request from a public fork of a first time contributor. For more information, see \"Approving workflow runs from public forks.\"
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Approves a workflow run for a pull request from a public fork of a first time contributor. For more information, see \"Approving workflow runs from public forks.\"
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -37495,7 +37492,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"artifacts\": [\n {\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n },\n {\n \"id\": 13,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMw==\",\n \"name\": \"\",\n \"size_in_bytes\": 453,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -37595,7 +37592,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"check_suite_id\": 42,\n \"check_suite_node_id\": \"MDEwOkNoZWNrU3VpdGU0Mg==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n}\n
"
}
]
@@ -37704,13 +37701,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"jobs\": [\n {\n \"id\": 399444496,\n \"run_id\": 29679449,\n \"run_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\",\n \"node_id\": \"MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\",\n \"head_sha\": \"f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/runs/399444496\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"started_at\": \"2020-01-20T17:42:40Z\",\n \"completed_at\": \"2020-01-20T17:44:39Z\",\n \"name\": \"build\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 1,\n \"started_at\": \"2020-01-20T09:42:40.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:41.000-08:00\"\n },\n {\n \"name\": \"Run actions/checkout@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 2,\n \"started_at\": \"2020-01-20T09:42:41.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Set up Ruby\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 3,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Run actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 4,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:48.000-08:00\"\n },\n {\n \"name\": \"Install Bundler\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 5,\n \"started_at\": \"2020-01-20T09:42:48.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:52.000-08:00\"\n },\n {\n \"name\": \"Install Gems\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 6,\n \"started_at\": \"2020-01-20T09:42:52.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:53.000-08:00\"\n },\n {\n \"name\": \"Run Tests\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 7,\n \"started_at\": \"2020-01-20T09:42:53.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:59.000-08:00\"\n },\n {\n \"name\": \"Deploy to Heroku\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 8,\n \"started_at\": \"2020-01-20T09:42:59.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Post actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 16,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Complete job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 17,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n }\n ],\n \"check_run_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\",\n \"labels\": [\n \"self-hosted\",\n \"foo\",\n \"bar\"\n ],\n \"runner_id\": 1,\n \"runner_name\": \"my runner\",\n \"runner_group_id\": 2,\n \"runner_group_name\": \"my runner group\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -37792,15 +37789,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download an archive of log files for a specific workflow run attempt. This link expires after\n1 minute. Look for Location: in the response header to find the URL for the download. Anyone with read access to\nthe repository can use this endpoint. If the repository is private you must use an access token with the repo scope.\nGitHub Apps must have the actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download an archive of log files for a specific workflow run attempt. This link expires after\n1 minute. Look for Location: in the response header to find the URL for the download. Anyone with read access to\nthe repository can use this endpoint. If the repository is private you must use an access token with the repo scope.\nGitHub Apps must have the actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -37870,15 +37867,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Cancels a workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Cancels a workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -37989,7 +37986,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"jobs\": [\n {\n \"id\": 399444496,\n \"run_id\": 29679449,\n \"run_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\",\n \"node_id\": \"MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\",\n \"head_sha\": \"f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/runs/399444496\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"started_at\": \"2020-01-20T17:42:40Z\",\n \"completed_at\": \"2020-01-20T17:44:39Z\",\n \"name\": \"build\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 1,\n \"started_at\": \"2020-01-20T09:42:40.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:41.000-08:00\"\n },\n {\n \"name\": \"Run actions/checkout@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 2,\n \"started_at\": \"2020-01-20T09:42:41.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Set up Ruby\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 3,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Run actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 4,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:48.000-08:00\"\n },\n {\n \"name\": \"Install Bundler\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 5,\n \"started_at\": \"2020-01-20T09:42:48.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:52.000-08:00\"\n },\n {\n \"name\": \"Install Gems\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 6,\n \"started_at\": \"2020-01-20T09:42:52.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:53.000-08:00\"\n },\n {\n \"name\": \"Run Tests\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 7,\n \"started_at\": \"2020-01-20T09:42:53.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:59.000-08:00\"\n },\n {\n \"name\": \"Deploy to Heroku\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 8,\n \"started_at\": \"2020-01-20T09:42:59.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Post actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 16,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Complete job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 17,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n }\n ],\n \"check_run_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\",\n \"labels\": [\n \"self-hosted\",\n \"foo\",\n \"bar\"\n ],\n \"runner_id\": 1,\n \"runner_name\": \"my runner\",\n \"runner_group_id\": 2,\n \"runner_group_name\": \"my runner group\"\n }\n ]\n}\n
"
}
]
@@ -38062,15 +38059,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download an archive of log files for a workflow run. This link expires after 1 minute. Look for\nLocation: in the response header to find the URL for the download. Anyone with read access to the repository can use\nthis endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must have\nthe actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download an archive of log files for a workflow run. This link expires after 1 minute. Look for\nLocation: in the response header to find the URL for the download. Anyone with read access to the repository can use\nthis endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must have\nthe actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -38140,15 +38137,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes all logs for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes all logs for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -38224,7 +38221,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"environment\": {\n \"id\": 161088068,\n \"node_id\": \"MDExOkVudmlyb25tZW50MTYxMDg4MDY4\",\n \"name\": \"staging\",\n \"url\": \"https://api.github.com/repos/github/hello-world/environments/staging\",\n \"html_url\": \"https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\"\n },\n \"wait_timer\": 30,\n \"wait_timer_started_at\": \"2020-11-23T22:00:40Z\",\n \"current_user_can_approve\": true,\n \"reviewers\": [\n {\n \"type\": \"User\",\n \"reviewer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"type\": \"Team\",\n \"reviewer\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n }\n ]\n }\n]\n
"
}
]
@@ -38404,7 +38401,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n }\n]\n
"
}
]
@@ -38479,15 +38476,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Re-runs your workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Re-runs your workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -38563,7 +38560,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"billable\": {\n \"UBUNTU\": {\n \"total_ms\": 180000,\n \"jobs\": 1,\n \"job_runs\": [\n {\n \"job_id\": 1,\n \"duration_ms\": 180000\n }\n ]\n },\n \"MACOS\": {\n \"total_ms\": 240000,\n \"jobs\": 4,\n \"job_runs\": [\n {\n \"job_id\": 2,\n \"duration_ms\": 60000\n },\n {\n \"job_id\": 3,\n \"duration_ms\": 60000\n },\n {\n \"job_id\": 4,\n \"duration_ms\": 60000\n },\n {\n \"job_id\": 5,\n \"duration_ms\": 60000\n }\n ]\n },\n \"WINDOWS\": {\n \"total_ms\": 300000,\n \"jobs\": 2,\n \"job_runs\": [\n {\n \"job_id\": 6,\n \"duration_ms\": 150000\n },\n {\n \"job_id\": 7,\n \"duration_ms\": 150000\n }\n ]\n }\n },\n \"run_duration_ms\": 500000\n}\n
"
}
]
@@ -38652,7 +38649,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"secrets\": [\n {\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n },\n {\n \"name\": \"GIST_ID\",\n \"created_at\": \"2020-01-10T10:59:22Z\",\n \"updated_at\": \"2020-01-11T11:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -38721,7 +38718,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -38800,7 +38797,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n}\n
"
}
]
@@ -38852,7 +38849,7 @@
}
],
"summary": "Create or update a repository secret",
- "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -38913,15 +38910,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -39012,15 +39009,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in a repository using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in a repository using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -39106,7 +39103,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"workflows\": [\n {\n \"id\": 161335,\n \"node_id\": \"MDg6V29ya2Zsb3cxNjEzMzU=\",\n \"name\": \"CI\",\n \"path\": \".github/workflows/blank.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/161335\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/161335\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/CI/badge.svg\"\n },\n {\n \"id\": 269289,\n \"node_id\": \"MDE4OldvcmtmbG93IFNlY29uZGFyeTI2OTI4OQ==\",\n \"name\": \"Linter\",\n \"path\": \".github/workflows/linter.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/269289\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/269289\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/Linter/badge.svg\"\n }\n ]\n}\n
"
}
]
@@ -39192,7 +39189,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 161335,\n \"node_id\": \"MDg6V29ya2Zsb3cxNjEzMzU=\",\n \"name\": \"CI\",\n \"path\": \".github/workflows/blank.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/161335\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/161335\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/CI/badge.svg\"\n}\n
"
}
]
@@ -39272,15 +39269,15 @@
"subcategory": "workflows",
"subcategoryLabel": "Workflows",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Disables a workflow and sets the state of the workflow to disabled_manually. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Disables a workflow and sets the state of the workflow to disabled_manually. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -39402,14 +39399,14 @@
"subcategoryLabel": "Workflows",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "You can use this endpoint to manually trigger a GitHub Actions workflow run. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must configure your GitHub Actions workflow to run when the workflow_dispatch webhook event occurs. The inputs are configured in the workflow file. For more information about how to configure the workflow_dispatch event in the workflow file, see \"Events that trigger workflows.\"
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint. For more information, see \"Creating a personal access token for the command line.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "You can use this endpoint to manually trigger a GitHub Actions workflow run. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must configure your GitHub Actions workflow to run when the workflow_dispatch webhook event occurs. The inputs are configured in the workflow file. For more information about how to configure the workflow_dispatch event in the workflow file, see \"Events that trigger workflows.\"
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint. For more information, see \"Creating a personal access token for the command line.\"
",
"bodyParameters": [
{
"type": "string",
@@ -39510,15 +39507,15 @@
"subcategory": "workflows",
"subcategoryLabel": "Workflows",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Enables a workflow and sets the state of the workflow to active. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Enables a workflow and sets the state of the workflow to active. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -39706,7 +39703,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"workflow_runs\": [\n {\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n }\n ]\n}\n
"
}
]
@@ -39792,7 +39789,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"billable\": {\n \"UBUNTU\": {\n \"total_ms\": 180000\n },\n \"MACOS\": {\n \"total_ms\": 240000\n },\n \"WINDOWS\": {\n \"total_ms\": 300000\n }\n }\n}\n
"
}
]
@@ -39881,13 +39878,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -39958,20 +39955,20 @@
"subcategory": "assignees",
"subcategoryLabel": "Assignees",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Checks if a user has permission to be assigned to an issue in this repository.
\nIf the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
\nOtherwise a 404 status code is returned.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "If the `assignee` can be assigned to issues in the repository, a `204` header with no content is returned."
+ "description": "If the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Otherwise a `404` status code is returned."
+ "description": "Otherwise a 404 status code is returned.
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Checks if a user has permission to be assigned to an issue in this repository.
\nIf the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
\nOtherwise a 404 status code is returned.
"
+ ]
},
{
"verb": "get",
@@ -40047,7 +40044,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"key_prefix\": \"TICKET-\",\n \"url_template\": \"https://example.com/TICKET?query=<num>\"\n }\n]\n
"
}
]
@@ -40174,13 +40171,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "response",
+ "description": "response
",
"payload": "{\n \"id\": 1,\n \"key_prefix\": \"TICKET-\",\n \"url_template\": \"https://example.com/TICKET?query=<num>\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40258,13 +40255,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"key_prefix\": \"TICKET-\",\n \"url_template\": \"https://example.com/TICKET?query=<num>\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -40336,20 +40333,20 @@
"subcategory": "autolinks",
"subcategoryLabel": "Autolinks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This deletes a single autolink reference by ID that was configured for the given repository.
\nInformation about autolinks are only available to repository administrators.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This deletes a single autolink reference by ID that was configured for the given repository.
\nInformation about autolinks are only available to repository administrators.
"
+ ]
},
{
"verb": "put",
@@ -40407,15 +40404,15 @@
"category": "repos",
"categoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Enables automated security fixes for a repository. The authenticated user must have admin access to the repository. For more information, see \"Configuring automated security fixes\".
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Enables automated security fixes for a repository. The authenticated user must have admin access to the repository. For more information, see \"Configuring automated security fixes\".
"
+ ]
},
{
"verb": "delete",
@@ -40473,15 +40470,15 @@
"category": "repos",
"categoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Disables automated security fixes for a repository. The authenticated user must have admin access to the repository. For more information, see \"Configuring automated security fixes\".
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Disables automated security fixes for a repository. The authenticated user must have admin access to the repository. For more information, see \"Configuring automated security fixes\".
"
+ ]
},
{
"verb": "get",
@@ -40575,13 +40572,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"protected\": true,\n \"protection\": {\n \"required_status_checks\": {\n \"enforcement_level\": \"non_admins\",\n \"contexts\": [\n \"ci-test\",\n \"linter\"\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/octocat/hello-world/branches/master/protection\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -40653,29 +40650,29 @@
"categoryLabel": "Branches",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -40752,13 +40749,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection\",\n \"required_status_checks\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\",\n \"enforcement_level\": \"non_admins\"\n },\n \"enforce_admins\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n },\n \"required_pull_request_reviews\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n },\n \"restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"apps_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"apps\": [\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n ]\n },\n \"required_linear_history\": {\n \"enabled\": true\n },\n \"allow_force_pushes\": {\n \"enabled\": true\n },\n \"allow_deletions\": {\n \"enabled\": true\n },\n \"required_conversation_resolution\": {\n \"enabled\": true\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -41659,29 +41656,29 @@
"subcategoryLabel": "Branch protection",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nProtecting a branch requires admin or owner permissions to the repository.
\nNote: Passing new arrays of users and teams replaces their previous values.
\nNote: The list of users, apps, and teams in total is limited to 100 items.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nProtecting a branch requires admin or owner permissions to the repository.
\nNote: Passing new arrays of users and teams replaces their previous values.
\nNote: The list of users, apps, and teams in total is limited to 100 items.
",
"bodyParameters": [
{
"type": "object or nullable",
@@ -42518,20 +42515,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -42608,7 +42605,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n}\n
"
}
]
@@ -42688,7 +42685,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n}\n
"
}
]
@@ -42762,20 +42759,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nRemoving admin enforcement requires admin or owner permissions to the repository and branch protection to be enabled.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nRemoving admin enforcement requires admin or owner permissions to the repository and branch protection to be enabled.
"
+ ]
},
{
"verb": "get",
@@ -42852,7 +42849,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n}\n
"
}
]
@@ -43127,13 +43124,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -43370,20 +43367,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -43460,13 +43457,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures\",\n \"enabled\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -43545,13 +43542,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures\",\n \"enabled\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -43624,20 +43621,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nWhen authenticated with admin or owner permissions to the repository, you can use this endpoint to disable required signed commits on a branch. You must enable branch protection to require signed commits.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nWhen authenticated with admin or owner permissions to the repository, you can use this endpoint to disable required signed commits on a branch. You must enable branch protection to require signed commits.
"
+ ]
},
{
"verb": "get",
@@ -43714,13 +43711,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"strict\": true,\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -43900,18 +43897,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"strict\": true,\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -44069,15 +44066,15 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -44154,13 +44151,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -44297,23 +44294,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\",\n \"continuous-integration/jenkins\"\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -44450,18 +44447,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -44597,18 +44594,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -44687,13 +44684,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"apps_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"apps\": [\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -44766,15 +44763,15 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nDisables the ability to restrict who can push to this branch.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nDisables the ability to restrict who can push to this branch.
"
+ ]
},
{
"verb": "get",
@@ -44851,13 +44848,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -44993,13 +44990,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -45135,13 +45132,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -45276,13 +45273,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -45361,13 +45358,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -45504,13 +45501,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -45647,13 +45644,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -45789,13 +45786,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -45874,13 +45871,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -46016,13 +46013,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -46158,13 +46155,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -46299,13 +46296,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -46420,23 +46417,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"node_id\": \"MDY6Q29tbWl0N2ZkMWE2MGIwMWY5MWIzMTRmNTk5NTVhNGU0ZDRlODBkOGVkZjExZA==\",\n \"commit\": {\n \"author\": {\n \"name\": \"The Octocat\",\n \"date\": \"2012-03-06T15:06:50-08:00\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"tree\": {\n \"sha\": \"b4eecafa9be2f2006ce1b709d6857b07069b4608\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/b4eecafa9be2f2006ce1b709d6857b07069b4608\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"date\": \"2012-03-06T15:06:50-08:00\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n },\n \"comment_count\": 0\n },\n \"author\": {\n \"gravatar_id\": \"\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/7ad39074b0584bc555d0417ae3e7d974?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"id\": 583231,\n \"login\": \"octocat\",\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"parents\": [\n {\n \"sha\": \"553c2077f0edc3d5dc5d17262f6aa498e69d6f8e\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/553c2077f0edc3d5dc5d17262f6aa498e69d6f8e\"\n },\n {\n \"sha\": \"762941318ee16e59dabbacb1b4049eec22f0d303\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/762941318ee16e59dabbacb1b4049eec22f0d303\"\n }\n ],\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"committer\": {\n \"gravatar_id\": \"\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/7ad39074b0584bc555d0417ae3e7d974?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"id\": 583231,\n \"login\": \"octocat\",\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\"\n },\n \"_links\": {\n \"html\": \"https://github.com/octocat/Hello-World/tree/master\",\n \"self\": \"https://api.github.com/repos/octocat/Hello-World/branches/master\"\n },\n \"protected\": true,\n \"protection\": {\n \"required_status_checks\": {\n \"enforcement_level\": \"non_admins\",\n \"contexts\": [\n \"ci-test\",\n \"linter\"\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/octocat/hello-world/branches/master/protection\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -48594,7 +48591,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n}\n
"
}
]
@@ -49688,7 +49685,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n}\n
"
}
],
@@ -50728,7 +50725,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"path\": \"README.md\",\n \"start_line\": 2,\n \"end_line\": 2,\n \"start_column\": 5,\n \"end_column\": 10,\n \"annotation_level\": \"warning\",\n \"title\": \"Spell Checker\",\n \"message\": \"Check your spelling for 'banaas'.\",\n \"raw_details\": \"Do you mean 'bananas' or 'banana'?\",\n \"blob_href\": \"https://api.github.com/repos/github/rest-api-description/git/blobs/abc\"\n }\n]\n
"
}
]
@@ -50801,30 +50798,30 @@
"subcategory": "runs",
"subcategoryLabel": "Runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check run, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if the check run is not rerequestable or doesn't belong to the authenticated GitHub App"
+ "description": "Forbidden if the check run is not rerequestable or doesn't belong to the authenticated GitHub App
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation error if the check run is not rerequestable"
+ "description": "Validation error if the check run is not rerequestable
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check run, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
"
+ ]
},
{
"verb": "post",
@@ -50928,13 +50925,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "when the suite already existed",
+ "description": "when the suite already existed
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when the suite was created",
+ "description": "Response when the suite was created
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
}
]
@@ -51087,7 +51084,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"preferences\": {\n \"auto_trigger_checks\": [\n {\n \"app_id\": 2,\n \"setting\": true\n },\n {\n \"app_id\": 4,\n \"setting\": false\n }\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n }\n}\n
"
}
],
@@ -51232,7 +51229,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
}
]
@@ -51371,7 +51368,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_runs\": [\n {\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -51444,15 +51441,15 @@
"subcategory": "suites",
"subcategoryLabel": "Suites",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check suite, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check suite, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
"
+ ]
},
{
"verb": "get",
@@ -51618,28 +51615,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"number\": 4,\n \"created_at\": \"2020-02-13T12:29:18Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/4\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/4\",\n \"state\": \"open\",\n \"fixed_at\": null,\n \"dismissed_by\": null,\n \"dismissed_at\": null,\n \"dismissed_reason\": null,\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"tags\": [\n \"security\",\n \"external/cwe/cwe-022\"\n ],\n \"description\": \"Arbitrary file write during zip extraction\",\n \"name\": \"js/zipslip\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"open\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/4/instances\"\n },\n {\n \"number\": 3,\n \"created_at\": \"2020-02-13T12:29:18Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/3\",\n \"state\": \"dismissed\",\n \"fixed_at\": null,\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-02-14T12:29:18Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"tags\": [\n \"security\",\n \"external/cwe/cwe-022\"\n ],\n \"description\": \"Arbitrary file write during zip extraction\",\n \"name\": \"js/zipslip\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"open\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"lib/ab12-gen.js\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": []\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -51717,28 +51714,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-06-19T11:21:34Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/42\",\n \"state\": \"dismissed\",\n \"fixed_at\": null,\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 54933897,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-02-14T12:29:18Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"security_severity_level\": \"high\",\n \"description\": \"Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\",\n \"name\": \"js/zipslip\",\n \"full_description\": \"Extracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten.\",\n \"tags\": [\n \"security\",\n \"external/cwe/cwe-022\"\n ],\n \"help\": \"# Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\\\\nExtracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten ...\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"dismissed\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -51894,23 +51891,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-08-25T21:28:36Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/42\",\n \"state\": \"dismissed\",\n \"fixed_at\": null,\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-09-02T22:34:56Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"security_severity_level\": \"high\",\n \"description\": \"Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\",\n \"name\": \"js/zipslip\",\n \"full_description\": \"Extracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten.\",\n \"tags\": [\n \"security\",\n \"external/cwe/cwe-022\"\n ],\n \"help\": \"# Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\\\\nExtracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten ...\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"dismissed\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -52019,23 +52016,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"\",\n \"state\": \"open\",\n \"fixed_at\": null,\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"lib/ab12-gen.js\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"library\"\n ]\n },\n {\n \"ref\": \"refs/pull/3740/merge\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"\",\n \"category\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"state\": \"fixed\",\n \"fixed_at\": \"2020-02-14T12:29:18Z\",\n \"commit_sha\": \"b09da05606e27f463a2b49287684b4ae777092f2\",\n \"message\": {\n \"text\": \"This suffix check is missing a length comparison to correctly handle lastIndexOf returning -1.\"\n },\n \"location\": {\n \"path\": \"app/script.js\",\n \"start_line\": 2,\n \"end_line\": 2,\n \"start_column\": 10,\n \"end_column\": 50\n },\n \"classifications\": [\n \"source\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -52166,23 +52163,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/main\",\n \"commit_sha\": \"d99612c3e1f2970085cfbaeadf8f010ef69bad83\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:analyze\",\n \"environment\": \"{\\\"language\\\":\\\"python\\\"}\",\n \"error\": \"\",\n \"category\": \".github/workflows/codeql-analysis.yml:analyze/language:python\",\n \"created_at\": \"2020-08-27T15:05:21Z\",\n \"results_count\": 17,\n \"rules_count\": 49,\n \"id\": 201,\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/201\",\n \"sarif_id\": \"6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53\",\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"deletable\": true,\n \"warning\": \"\"\n },\n {\n \"ref\": \"refs/heads/my-branch\",\n \"commit_sha\": \"c8cff6510d4d084fb1b4aa13b64b97ca12b07321\",\n \"analysis_key\": \".github/workflows/shiftleft.yml:build\",\n \"environment\": \"{}\",\n \"error\": \"\",\n \"category\": \".github/workflows/shiftleft.yml:build/\",\n \"created_at\": \"2020-08-31T22:46:44Z\",\n \"results_count\": 17,\n \"rules_count\": 32,\n \"id\": 200,\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/200\",\n \"sarif_id\": \"8981cd8e-b078-4ac3-a3be-1dad7dbd0b582\",\n \"tool\": {\n \"name\": \"Python Security Analysis\",\n \"guid\": null,\n \"version\": \"1.2.0\"\n },\n \"deletable\": true,\n \"warning\": \"\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -52263,17 +52260,17 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -52365,22 +52362,22 @@
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -52590,27 +52587,27 @@
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request if the sarif field is invalid"
+ "description": "Bad Request if the sarif field is invalid
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "413",
"httpStatusMessage": "Payload Too Large",
- "description": "Payload Too Large if the sarif field is too large"
+ "description": "Payload Too Large if the sarif field is too large
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -52691,17 +52688,17 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if the sarif id does not match any upload"
+ "description": "Not Found if the sarif id does not match any upload
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -52787,28 +52784,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"total_count\": 2,\n \"codespaces\": [\n {\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"recent_folders\": []\n },\n {\n \"id\": 2,\n \"name\": \"monalisa-octocat-hello-world-3f89ada1j3\",\n \"environment_id\": \"526ce4d7-46da-494f-a4f9-cfd25b818719\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-3f89ada1j3.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop\",\n \"recent_folders\": []\n }\n ]\n}\n
"
+ "description": "Response
",
+ "payload": "{\n \"total_count\": 2,\n \"codespaces\": [\n {\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"devcontainer_path\": \".devcontainer/devcontainer.json\",\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"recent_folders\": []\n },\n {\n \"id\": 2,\n \"name\": \"monalisa-octocat-hello-world-3f89ada1j3\",\n \"environment_id\": \"526ce4d7-46da-494f-a4f9-cfd25b818719\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"devcontainer_path\": \".devcontainer/devcontainer.json\",\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-3f89ada1j3.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop\",\n \"recent_folders\": []\n }\n ]\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -52985,29 +52982,29 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when the codespace was successfully created",
- "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
+ "description": "Response when the codespace was successfully created
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"devcontainer_path\": \".devcontainer/devcontainer.json\",\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response when the codespace creation partially failed but is being retried in the background",
- "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
+ "description": "Response when the codespace creation partially failed but is being retried in the background
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"devcontainer_path\": \".devcontainer/devcontainer.json\",\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -53086,33 +53083,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"machines\": [\n {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n {\n \"name\": \"premiumLinux\",\n \"display_name\": \"8 cores, 16 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 17179869184,\n \"cpus\": 8\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -53214,13 +53211,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"permissions\": {\n \"pull\": true,\n \"triage\": true,\n \"push\": true,\n \"maintain\": false,\n \"admin\": false\n },\n \"role_name\": \"write\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -53289,20 +53286,20 @@
"category": "collaborators",
"categoryLabel": "Collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "For organization-owned repositories, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners.
\nTeam members will include the members of child teams.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if user is a collaborator"
+ "description": "Response if user is a collaborator
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if user is not a collaborator"
+ "description": "Not Found if user is not a collaborator
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "For organization-owned repositories, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners.
\nTeam members will include the members of child teams.
"
+ ]
},
{
"verb": "put",
@@ -53442,23 +53439,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when a new invitation is created",
+ "description": "Response when a new invitation is created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\"\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when person is already a collaborator"
+ "description": "Response when person is already a collaborator
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -53528,14 +53525,14 @@
"categoryLabel": "Collaborators",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -53608,13 +53605,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if user has admin permissions",
+ "description": "if user has admin permissions
",
"payload": "{\n \"permission\": \"admin\",\n \"role_name\": \"admin\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -53702,7 +53699,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -53781,13 +53778,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -53903,13 +53900,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Nice change\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -53982,19 +53979,19 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -54108,13 +54105,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -54248,24 +54245,24 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -54344,15 +54341,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a commit comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a commit comment.
"
+ ]
},
{
"verb": "get",
@@ -54488,28 +54485,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -54586,13 +54583,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"branch_5\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"protected\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -54691,7 +54688,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -54867,18 +54864,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -54975,7 +54972,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false\n }\n]\n
"
}
]
@@ -55073,23 +55070,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ],\n \"stats\": {\n \"additions\": 104,\n \"deletions\": 4,\n \"total\": 108\n },\n \"files\": [\n {\n \"filename\": \"file1.txt\",\n \"additions\": 10,\n \"deletions\": 2,\n \"changes\": 12,\n \"status\": \"modified\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"patch\": \"@@ -29,7 +29,7 @@\\n.....\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -55237,7 +55234,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_runs\": [\n {\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -55358,7 +55355,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_suites\": [\n {\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n }\n ]\n}\n
"
}
]
@@ -55458,13 +55455,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"state\": \"success\",\n \"statuses\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\"\n },\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"id\": 2,\n \"node_id\": \"MDY6U3RhdHVzMg==\",\n \"state\": \"success\",\n \"description\": \"Testing has completed successfully\",\n \"target_url\": \"https://ci.example.com/2000/output\",\n \"context\": \"security/brakeman\",\n \"created_at\": \"2012-08-20T01:19:13Z\",\n \"updated_at\": \"2012-08-20T01:19:13Z\"\n }\n ],\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"total_count\": 2,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e/status\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -55563,13 +55560,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
}
]
},
@@ -55637,7 +55634,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"health_percentage\": 100,\n \"description\": \"My first repository on GitHub!\",\n \"documentation\": null,\n \"files\": {\n \"code_of_conduct\": {\n \"name\": \"Contributor Covenant\",\n \"key\": \"contributor_covenant\",\n \"url\": \"https://api.github.com/codes_of_conduct/contributor_covenant\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/CODE_OF_CONDUCT.md\"\n },\n \"code_of_conduct_file\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/CODE_OF_CONDUCT.md\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/CODE_OF_CONDUCT.md\"\n },\n \"contributing\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/CONTRIBUTING\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/CONTRIBUTING\"\n },\n \"issue_template\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/ISSUE_TEMPLATE\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/ISSUE_TEMPLATE\"\n },\n \"pull_request_template\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/PULL_REQUEST_TEMPLATE\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/PULL_REQUEST_TEMPLATE\"\n },\n \"license\": {\n \"name\": \"MIT License\",\n \"key\": \"mit\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/LICENSE\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"readme\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/README.md\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/README.md\"\n }\n },\n \"updated_at\": \"2017-02-28T19:09:29Z\",\n \"content_reports_enabled\": true\n}\n
"
}
]
@@ -55734,18 +55731,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/compare/master...topic\",\n \"html_url\": \"https://github.com/octocat/Hello-World/compare/master...topic\",\n \"permalink_url\": \"https://github.com/octocat/Hello-World/compare/octocat:bbcd538c8e72b8c175046e27cc8f907076331401...octocat:0328041d1152db8ae77652d1618a02e57f745f17\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/compare/master...topic.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/compare/master...topic.patch\",\n \"base_commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n },\n \"merge_base_commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n },\n \"status\": \"behind\",\n \"ahead_by\": 1,\n \"behind_by\": 2,\n \"total_commits\": 1,\n \"commits\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n ],\n \"files\": [\n {\n \"sha\": \"bbcd538c8e72b8c175046e27cc8f907076331401\",\n \"filename\": \"file1.txt\",\n \"status\": \"added\",\n \"additions\": 103,\n \"deletions\": 21,\n \"changes\": 124,\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/file1.txt?ref=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"patch\": \"@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -55858,17 +55855,17 @@
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Found"
+ "description": "Found
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -56178,29 +56175,29 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": {\n \"name\": \"hello.txt\",\n \"path\": \"notes/hello.txt\",\n \"sha\": \"a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"size\": 9,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\",\n \"git_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"download_url\": \"https://raw.githubusercontent.com/octocat/HelloWorld/master/notes/hello.txt\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"git\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"html\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\"\n }\n },\n \"commit\": {\n \"sha\": \"18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"node_id\": \"MDY6Q29tbWl0MThhNDNjZDhlMWUzYTc5Yzc4NmUzZDgwOGE3M2QyM2I2ZDIxMmIxNg==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/9a21f8e2018f42ffcf369b24d2cd20bc25c9e66f\",\n \"sha\": \"9a21f8e2018f42ffcf369b24d2cd20bc25c9e66f\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/da5a433788da5c255edad7979b328b67d79f53f6\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/da5a433788da5c255edad7979b328b67d79f53f6\",\n \"sha\": \"da5a433788da5c255edad7979b328b67d79f53f6\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": {\n \"name\": \"hello.txt\",\n \"path\": \"notes/hello.txt\",\n \"sha\": \"95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"size\": 9,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\",\n \"git_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"download_url\": \"https://raw.githubusercontent.com/octocat/HelloWorld/master/notes/hello.txt\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"git\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"html\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\"\n }\n },\n \"commit\": {\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -56632,28 +56629,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": null,\n \"commit\": {\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
],
"bodyParameters": [
@@ -56888,23 +56885,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if repository contains content",
+ "description": "if repository contains content
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"contributions\": 32\n }\n]\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if repository is empty"
+ "description": "Response if repository is empty
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -56992,7 +56989,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"secrets\": [\n {\n \"name\": \"AZURE_DEVOPS_PAT\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n },\n {\n \"name\": \"MY_ARTIFACTORY_PASSWORD\",\n \"created_at\": \"2020-01-10T10:59:22Z\",\n \"updated_at\": \"2020-01-11T11:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -57061,7 +57058,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -57140,7 +57137,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"MY_ARTIFACTORY_PASSWORD\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n}\n
"
}
]
@@ -57192,7 +57189,7 @@
}
],
"summary": "Create or update a repository secret",
- "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `dependabot_secrets` repository\npermission to use this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `dependabot_secrets` repository\npermission to use this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"dependabot"
],
@@ -57253,15 +57250,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the dependabot_secrets repository\npermission to use this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the dependabot_secrets repository\npermission to use this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -57352,15 +57349,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in a repository using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the dependabot_secrets repository permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in a repository using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the dependabot_secrets repository permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -57489,7 +57486,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n }\n]\n
"
}
]
@@ -57689,30 +57686,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Deployments offer a few configurable parameters with certain defaults.
\nThe ref parameter can be any named branch, tag, or SHA. At GitHub we often deploy branches and verify them\nbefore we merge a pull request.
\nThe environment parameter allows deployments to be issued to different runtime environments. Teams often have\nmultiple environments for verifying their applications, such as production, staging, and qa. This parameter\nmakes it easier to track which environments have requested deployments. The default environment is production.
\nThe auto_merge parameter is used to ensure that the requested ref is not behind the repository's default branch. If\nthe ref is behind the default branch for the repository, we will attempt to merge it for you. If the merge succeeds,\nthe API will return a successful merge commit. If merge conflicts prevent the merge from succeeding, the API will\nreturn a failure response.
\nBy default, commit statuses for every submitted context must be in a success\nstate. The required_contexts parameter allows you to specify a subset of contexts that must be success, or to\nspecify contexts that have not yet been submitted. You are not required to use commit statuses to deploy. If you do\nnot require any contexts or create any commit statuses, the deployment will always succeed.
\nThe payload parameter is available for any extra information that a deployment system might need. It is a JSON text\nfield that will be passed on when a deployment event is dispatched.
\nThe task parameter is used by the deployment system to allow different execution paths. In the web world this might\nbe deploy:migrations to run schema changes on the system. In the compiled world this could be a flag to compile an\napplication with debugging enabled.
\nUsers with repo or repo_deployment scopes can create a deployment for a given ref.
\nMerged branch response
\nYou will see this response when GitHub automatically merges the base branch into the topic branch instead of creating\na deployment. This auto-merge happens when:
\n\n- Auto-merge option is enabled in the repository
\n- Topic branch does not include the latest changes on the base branch, which is
master in the response example \n- There are no merge conflicts
\n
\nIf there are no new commits in the base branch, a new request to create a deployment should give a successful\nresponse.
\nMerge conflict response
\nThis error happens when the auto_merge option is enabled and when the default branch (in this case master), can't\nbe merged into the branch that's being deployed (in this case topic-branch), due to merge conflicts.
\nFailed commit status checks
\nThis error happens when the required_contexts parameter indicates that one or more contexts need to have a success\nstatus for the commit to be deployed, but one or more of the required contexts do not have a state of success.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Simple example",
- "payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
- },
- {
- "httpStatusCode": "202",
- "httpStatusMessage": "Accepted",
- "description": "Merged branch response",
- "payload": "{\n \"message\": \"Auto-merged master into topic-branch on deployment.\"\n}\n
"
- },
- {
- "httpStatusCode": "409",
- "httpStatusMessage": "Conflict",
- "description": "Conflict when there is a merge conflict or the commit's status checks failed"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -57813,6 +57786,30 @@
"rawDescription": "Specifies if the given environment is one that end-users directly interact with. Default: `true` when `environment` is `production` and `false` otherwise.",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Simple example",
+ "payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
+ },
+ {
+ "httpStatusCode": "202",
+ "httpStatusMessage": "Accepted",
+ "description": "Merged branch response
",
+ "payload": "{\n \"message\": \"Auto-merged master into topic-branch on deployment.\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "409",
+ "httpStatusMessage": "Conflict",
+ "description": "Conflict when there is a merge conflict or the commit's status checks failed
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -57887,13 +57884,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -57963,25 +57960,25 @@
"category": "deployments",
"categoryLabel": "Deployments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "To ensure there can always be an active deployment, you can only delete an inactive deployment. Anyone with repo or repo_deployment scopes can delete an inactive deployment.
\nTo set a deployment as inactive, you must:
\n\n- Create a new deployment that is active so that the system has a record of the current state, then delete the previously active deployment.
\n- Mark the active deployment as inactive by adding any non-successful deployment status.
\n
\nFor more information, see \"Create a deployment\" and \"Create a deployment status.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "To ensure there can always be an active deployment, you can only delete an inactive deployment. Anyone with repo or repo_deployment scopes can delete an inactive deployment.
\nTo set a deployment as inactive, you must:
\n\n- Create a new deployment that is active so that the system has a record of the current state, then delete the previously active deployment.
\n- Mark the active deployment as inactive by adding any non-successful deployment status.
\n
\nFor more information, see \"Create a deployment\" and \"Create a deployment status.\"
"
+ ]
},
{
"verb": "get",
@@ -58077,13 +58074,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -58346,13 +58343,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -58439,13 +58436,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -58550,19 +58547,19 @@
"categoryLabel": "Repos",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "You can use this endpoint to trigger a webhook event called repository_dispatch when you want activity that happens outside of GitHub to trigger a GitHub Actions workflow or GitHub App webhook. You must configure your GitHub Actions workflow or GitHub App to run when the repository_dispatch event occurs. For an example repository_dispatch webhook payload, see \"RepositoryDispatchEvent.\"
\nThe client_payload parameter is available for any extra information that your workflow might need. This parameter is a JSON payload that will be passed on when the webhook event is dispatched. For example, the client_payload can include a message that a user would like to send using a GitHub Actions workflow. Or the client_payload can be used as a test to debug your workflow.
\nThis endpoint requires write access to the repository by providing either:
\n\nThis input example shows how you can use the client_payload as a test to debug your workflow.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "You can use this endpoint to trigger a webhook event called repository_dispatch when you want activity that happens outside of GitHub to trigger a GitHub Actions workflow or GitHub App webhook. You must configure your GitHub Actions workflow or GitHub App to run when the repository_dispatch event occurs. For an example repository_dispatch webhook payload, see \"RepositoryDispatchEvent.\"
\nThe client_payload parameter is available for any extra information that your workflow might need. This parameter is a JSON payload that will be passed on when the webhook event is dispatched. For example, the client_payload can include a message that a user would like to send using a GitHub Actions workflow. Or the client_payload can be used as a test to debug your workflow.
\nThis endpoint requires write access to the repository by providing either:
\n\nThis input example shows how you can use the client_payload as a test to debug your workflow.
",
"bodyParameters": [
{
"type": "string",
@@ -58652,7 +58649,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"environments\": [\n {\n \"id\": 161088068,\n \"node_id\": \"MDExOkVudmlyb25tZW50MTYxMDg4MDY4\",\n \"name\": \"staging\",\n \"url\": \"https://api.github.com/repos/github/hello-world/environments/staging\",\n \"html_url\": \"https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\",\n \"created_at\": \"2020-11-23T22:00:40Z\",\n \"updated_at\": \"2020-11-23T22:00:40Z\",\n \"protection_rules\": [\n {\n \"id\": 3736,\n \"node_id\": \"MDQ6R2F0ZTM3MzY=\",\n \"type\": \"wait_timer\",\n \"wait_timer\": 30\n },\n {\n \"id\": 3755,\n \"node_id\": \"MDQ6R2F0ZTM3NTU=\",\n \"type\": \"required_reviewers\",\n \"reviewers\": [\n {\n \"type\": \"User\",\n \"reviewer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"type\": \"Team\",\n \"reviewer\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n }\n ]\n },\n {\n \"id\": 3756,\n \"node_id\": \"MDQ6R2F0ZTM3NTY=\",\n \"type\": \"branch_policy\"\n }\n ],\n \"deployment_branch_policy\": {\n \"protected_branches\": false,\n \"custom_branch_policies\": true\n }\n }\n ]\n}\n
"
}
]
@@ -58731,7 +58728,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 161088068,\n \"node_id\": \"MDExOkVudmlyb25tZW50MTYxMDg4MDY4\",\n \"name\": \"staging\",\n \"url\": \"https://api.github.com/repos/github/hello-world/environments/staging\",\n \"html_url\": \"https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\",\n \"created_at\": \"2020-11-23T22:00:40Z\",\n \"updated_at\": \"2020-11-23T22:00:40Z\",\n \"protection_rules\": [\n {\n \"id\": 3736,\n \"node_id\": \"MDQ6R2F0ZTM3MzY=\",\n \"type\": \"wait_timer\",\n \"wait_timer\": 30\n },\n {\n \"id\": 3755,\n \"node_id\": \"MDQ6R2F0ZTM3NTU=\",\n \"type\": \"required_reviewers\",\n \"reviewers\": [\n {\n \"type\": \"User\",\n \"reviewer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"type\": \"Team\",\n \"reviewer\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n }\n ]\n },\n {\n \"id\": 3756,\n \"node_id\": \"MDQ6R2F0ZTM3NTY=\",\n \"type\": \"branch_policy\"\n }\n ],\n \"deployment_branch_policy\": {\n \"protected_branches\": false,\n \"custom_branch_policies\": true\n }\n}\n
"
}
]
@@ -58965,13 +58962,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 161088068,\n \"node_id\": \"MDExOkVudmlyb25tZW50MTYxMDg4MDY4\",\n \"name\": \"staging\",\n \"url\": \"https://api.github.com/repos/github/hello-world/environments/staging\",\n \"html_url\": \"https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\",\n \"created_at\": \"2020-11-23T22:00:40Z\",\n \"updated_at\": \"2020-11-23T22:00:40Z\",\n \"protection_rules\": [\n {\n \"id\": 3736,\n \"node_id\": \"MDQ6R2F0ZTM3MzY=\",\n \"type\": \"wait_timer\",\n \"wait_timer\": 30\n },\n {\n \"id\": 3755,\n \"node_id\": \"MDQ6R2F0ZTM3NTU=\",\n \"type\": \"required_reviewers\",\n \"reviewers\": [\n {\n \"type\": \"User\",\n \"reviewer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"type\": \"Team\",\n \"reviewer\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n }\n ]\n },\n {\n \"id\": 3756,\n \"node_id\": \"MDQ6R2F0ZTM3NTY=\",\n \"type\": \"branch_policy\"\n }\n ],\n \"deployment_branch_policy\": {\n \"protected_branches\": false,\n \"custom_branch_policies\": true\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` are set to the same value"
+ "description": "Validation error when the environment name is invalid or when protected_branches and custom_branch_policies in deployment_branch_policy are set to the same value
"
}
],
"bodyParameters": [
@@ -59186,15 +59183,15 @@
"subcategory": "environments",
"subcategoryLabel": "Environments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "You must authenticate using an access token with the repo scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Default response"
+ "description": "Default response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "You must authenticate using an access token with the repo scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -59275,14 +59272,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -59385,13 +59382,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
}
]
},
@@ -59492,28 +59489,28 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"language\": null,\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"push\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"organization\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"parent\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"source\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -59640,28 +59637,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/git/blobs/3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"sha\": \"3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -59738,23 +59735,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": \"Q29udGVudCBvZiB0aGUgYmxvYg==\",\n \"encoding\": \"base64\",\n \"url\": \"https://api.github.com/repos/octocat/example/git/blobs/3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"sha\": \"3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"size\": 19,\n \"node_id\": \"Q29udGVudCBvZiB0aGUgYmxvYg==\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -60044,18 +60041,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/827efc6d56897b048c772eb4087f854f46256132\",\n \"sha\": \"827efc6d56897b048c772eb4087f854f46256132\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7d1b31e74ee336d15cbd21741bc88a537ed063a0\",\n \"sha\": \"7d1b31e74ee336d15cbd21741bc88a537ed063a0\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7d1b31e74ee336d15cbd21741bc88a537ed063a0\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n },\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -60329,13 +60326,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"added readme, because im a good github citizen\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -60434,7 +60431,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/feature-a\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlLWE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/feature-a\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n },\n {\n \"ref\": \"refs/heads/feature-b\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlLWI=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/feature-b\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac\"\n }\n }\n]\n
"
}
]
@@ -60514,13 +60511,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -60664,13 +60661,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -60808,13 +60805,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -60888,19 +60885,19 @@
"subcategoryLabel": "Refs",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -61115,13 +61112,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"node_id\": \"MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw==\",\n \"tag\": \"v0.0.1\",\n \"sha\": \"940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"message\": \"initial version\",\n \"tagger\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\",\n \"date\": \"2014-11-07T22:01:45Z\"\n },\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\"\n },\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -61320,13 +61317,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"node_id\": \"MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw==\",\n \"tag\": \"v0.0.1\",\n \"sha\": \"940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"message\": \"initial version\",\n \"tagger\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\",\n \"date\": \"2014-11-07T22:01:45Z\"\n },\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\"\n },\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -61567,23 +61564,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"cd8274d15fa3ae2ab983129fb037999f264ba9a7\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/trees/cd8274d15fa3ae2ab983129fb037999f264ba9a7\",\n \"tree\": [\n {\n \"path\": \"file.rb\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"size\": 132,\n \"sha\": \"7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b\"\n }\n ],\n \"truncated\": true\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -61832,12 +61829,12 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -61925,13 +61922,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -62211,23 +62208,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -62491,13 +62488,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -62795,18 +62792,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -63083,19 +63080,19 @@
"subcategoryLabel": "Repos",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -63170,7 +63167,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -63311,14 +63308,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for a repository. To update more information about the webhook, including the active state and events, use \"Update a repository webhook.\"
\nAccess tokens must have the write:repo_hook or repo scope, and GitHub Apps must have the repository_hooks:write permission.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -63368,6 +63357,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -63463,18 +63460,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n },\n {\n \"id\": 123456789,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-04T00:57:16Z\",\n \"redelivery\": true,\n \"duration\": 0.28,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -63560,18 +63557,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456,\n \"url\": \"https://www.example.com\",\n \"request\": {\n \"headers\": {\n \"X-GitHub-Delivery\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"X-Hub-Signature-256\": \"sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"Accept\": \"*/*\",\n \"X-GitHub-Hook-ID\": \"42\",\n \"User-Agent\": \"GitHub-Hookshot/b8c71d8\",\n \"X-GitHub-Event\": \"issues\",\n \"X-GitHub-Hook-Installation-Target-ID\": \"123\",\n \"X-GitHub-Hook-Installation-Target-Type\": \"repository\",\n \"content-type\": \"application/json\",\n \"X-Hub-Signature\": \"sha1=a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\"\n },\n \"payload\": {\n \"action\": \"opened\",\n \"issue\": {\n \"body\": \"foo\"\n },\n \"repository\": {\n \"id\": 123\n }\n }\n },\n \"response\": {\n \"headers\": {\n \"Content-Type\": \"text/html;charset=utf-8\"\n },\n \"payload\": \"ok\"\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -63651,25 +63648,25 @@
"subcategory": "repo-deliveries",
"subcategoryLabel": "Repo deliveries",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Redeliver a webhook delivery for a webhook configured in a repository.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Redeliver a webhook delivery for a webhook configured in a repository.
"
+ ]
},
{
"verb": "post",
@@ -63738,20 +63735,20 @@
"subcategory": "repos",
"subcategoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the hook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the hook.
"
+ ]
},
{
"verb": "post",
@@ -63820,20 +63817,20 @@
"subcategory": "repos",
"subcategoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook is not subscribed to push events, the server will respond with 204 but no test POST will be generated.
\nNote: Previously /repos/:owner/:repo/hooks/:hook_id/test
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook is not subscribed to push events, the server will respond with 204 but no test POST will be generated.
\nNote: Previously /repos/:owner/:repo/hooks/:hook_id/test
"
+ ]
},
{
"verb": "get",
@@ -63899,13 +63896,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"vcs\": \"subversion\",\n \"use_lfs\": true,\n \"vcs_url\": \"http://svn.mycompany.com/svn/myproject\",\n \"status\": \"complete\",\n \"status_text\": \"Done\",\n \"has_large_files\": true,\n \"large_files_size\": 132331036,\n \"large_files_count\": 1,\n \"authors_count\": 4,\n \"url\": \"https://api.github.com/repos/octocat/socm/import\",\n \"html_url\": \"https://import.github.com/octocat/socm/import\",\n \"authors_url\": \"https://api.github.com/repos/octocat/socm/import/authors\",\n \"repository_url\": \"https://api.github.com/repos/octocat/socm\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -64098,18 +64095,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"vcs\": \"subversion\",\n \"use_lfs\": true,\n \"vcs_url\": \"http://svn.mycompany.com/svn/myproject\",\n \"status\": \"importing\",\n \"status_text\": \"Importing...\",\n \"has_large_files\": false,\n \"large_files_size\": 0,\n \"large_files_count\": 0,\n \"authors_count\": 0,\n \"commit_count\": 1042,\n \"url\": \"https://api.github.com/repos/octocat/socm/import\",\n \"html_url\": \"https://import.github.com/octocat/socm/import\",\n \"authors_url\": \"https://api.github.com/repos/octocat/socm/import/authors\",\n \"repository_url\": \"https://api.github.com/repos/octocat/socm\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -64348,15 +64345,15 @@
"subcategory": "source-imports",
"subcategoryLabel": "Source imports",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Stop an import for a repository.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Stop an import for a repository.
"
+ ]
},
{
"verb": "get",
@@ -64432,13 +64429,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 2268557,\n \"remote_id\": \"nobody@fc7da526-431c-80fe-3c8c-c148ff18d7ef\",\n \"remote_name\": \"nobody\",\n \"email\": \"hubot@github.com\",\n \"name\": \"Hubot\",\n \"url\": \"https://api.github.com/repos/octocat/socm/import/authors/2268557\",\n \"import_url\": \"https://api.github.com/repos/octocat/socm/import\"\n },\n {\n \"id\": 2268558,\n \"remote_id\": \"svner@fc7da526-431c-80fe-3c8c-c148ff18d7ef\",\n \"remote_name\": \"svner\",\n \"email\": \"svner@fc7da526-431c-80fe-3c8c-c148ff18d7ef\",\n \"name\": \"svner\",\n \"url\": \"https://api.github.com/repos/octocat/socm/import/authors/2268558\",\n \"import_url\": \"https://api.github.com/repos/octocat/socm/import\"\n },\n {\n \"id\": 2268559,\n \"remote_id\": \"svner@example.com@fc7da526-431c-80fe-3c8c-c148ff18d7ef\",\n \"remote_name\": \"svner@example.com\",\n \"email\": \"svner@example.com@fc7da526-431c-80fe-3c8c-c148ff18d7ef\",\n \"name\": \"svner@example.com\",\n \"url\": \"https://api.github.com/repos/octocat/socm/import/authors/2268559\",\n \"import_url\": \"https://api.github.com/repos/octocat/socm/import\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -64570,18 +64567,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2268557,\n \"remote_id\": \"nobody@fc7da526-431c-80fe-3c8c-c148ff18d7ef\",\n \"remote_name\": \"nobody\",\n \"email\": \"hubot@github.com\",\n \"name\": \"Hubot\",\n \"url\": \"https://api.github.com/repos/octocat/socm/import/authors/2268557\",\n \"import_url\": \"https://api.github.com/repos/octocat/socm/import\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -64649,7 +64646,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref_name\": \"refs/heads/master\",\n \"path\": \"foo/bar/1\",\n \"oid\": \"d3d9446802a44259755d38e6d163e820\",\n \"size\": 10485760\n },\n {\n \"ref_name\": \"refs/heads/master\",\n \"path\": \"foo/bar/2\",\n \"oid\": \"6512bd43d9caa6e02c990b0a82652dca\",\n \"size\": 11534336\n },\n {\n \"ref_name\": \"refs/heads/master\",\n \"path\": \"foo/bar/3\",\n \"oid\": \"c20ad4d76fe97759aa27a0c99bff6710\",\n \"size\": 12582912\n }\n]\n
"
}
]
@@ -64764,13 +64761,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"vcs\": \"subversion\",\n \"use_lfs\": true,\n \"vcs_url\": \"http://svn.mycompany.com/svn/myproject\",\n \"status\": \"complete\",\n \"status_text\": \"Done\",\n \"has_large_files\": true,\n \"large_files_size\": 132331036,\n \"large_files_count\": 1,\n \"authors_count\": 4,\n \"url\": \"https://api.github.com/repos/octocat/socm/import\",\n \"html_url\": \"https://import.github.com/octocat/socm/import\",\n \"authors_url\": \"https://api.github.com/repos/octocat/socm/import/authors\",\n \"repository_url\": \"https://api.github.com/repos/octocat/socm\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -64836,18 +64833,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -64915,7 +64912,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"limit\": \"collaborators_only\",\n \"origin\": \"repository\",\n \"expires_at\": \"2018-08-17T04:18:39Z\"\n}\n
"
}
]
@@ -65067,13 +65064,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"limit\": \"collaborators_only\",\n \"origin\": \"repository\",\n \"expires_at\": \"2018-08-17T04:18:39Z\"\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Response"
+ "description": "Response
"
}
]
},
@@ -65135,20 +65132,20 @@
"subcategory": "repos",
"subcategoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes all interaction restrictions from the given repository. You must have owner or admin access to remove restrictions. If the interaction limit is set for the user or organization that owns this repository, you will receive a 409 Conflict response and will not be able to use this endpoint to change the interaction limit for a single repository.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes all interaction restrictions from the given repository. You must have owner or admin access to remove restrictions. If the interaction limit is set for the user or organization that owns this repository, you will receive a 409 Conflict response and will not be able to use this endpoint to change the interaction limit for a single repository.
"
+ ]
},
{
"verb": "get",
@@ -65234,7 +65231,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
}
]
@@ -65359,7 +65356,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"expired\": false,\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\"\n}\n
"
}
]
@@ -65433,14 +65430,14 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -65632,23 +65629,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -65689,7 +65686,7 @@
}
],
"summary": "Create an issue",
- "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -65835,40 +65832,7 @@
"categoryLabel": "Issues",
"contentType": "application/json",
"notes": [],
- "descriptionHTML": "Any user with pull access to a repository can create an issue. If issues are disabled in the repository, the API returns a 410 Gone status.
\nThis endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "410",
- "httpStatusMessage": "Gone",
- "description": "Gone"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- },
- {
- "httpStatusCode": "503",
- "httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
- }
- ],
+ "descriptionHTML": "Any user with pull access to a repository can create an issue. If issues are disabled in the repository, the API returns a 410 Gone status.
\nThis endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
"bodyParameters": [
{
"oneOf": [
@@ -65969,6 +65933,39 @@
"rawDescription": "Logins for Users to assign to this issue. _NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise._",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "410",
+ "httpStatusMessage": "Gone",
+ "description": "Gone
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ },
+ {
+ "httpStatusCode": "503",
+ "httpStatusMessage": "Service Unavailable",
+ "description": "Service unavailable
"
+ }
]
},
{
@@ -66095,18 +66092,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -66184,13 +66181,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -66306,13 +66303,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -66385,14 +66382,14 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -66506,13 +66503,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -66646,19 +66643,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -66737,15 +66734,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE delete /repositories/:repository_id/issues/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to an issue comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE delete /repositories/:repository_id/issues/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to an issue comment.
"
+ ]
},
{
"verb": "get",
@@ -66831,13 +66828,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"issue\": {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -66914,23 +66911,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"issue\": {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"performed_via_github_app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -67006,28 +67003,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -67237,44 +67234,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Issue owners and users with push access can edit an issue.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
- },
- {
- "httpStatusCode": "301",
- "httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "410",
- "httpStatusMessage": "Gone",
- "description": "Gone"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- },
- {
- "httpStatusCode": "503",
- "httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
- }
- ],
"bodyParameters": [
{
"oneOf": [
@@ -67390,6 +67349,44 @@
"rawDescription": "Logins for Users to assign to this issue. Pass one or more user logins to _replace_ the set of assignees on this Issue. Send an empty array (`[]`) to clear all assignees from the Issue. _NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise._",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "301",
+ "httpStatusMessage": "Moved Permanently",
+ "description": "Moved permanently
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "410",
+ "httpStatusMessage": "Gone",
+ "description": "Gone
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ },
+ {
+ "httpStatusCode": "503",
+ "httpStatusMessage": "Service Unavailable",
+ "description": "Service unavailable
"
+ }
]
},
{
@@ -67510,7 +67507,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
}
]
@@ -67632,7 +67629,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
}
]
@@ -67742,18 +67739,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -67804,7 +67801,7 @@
}
],
"summary": "Create an issue comment",
- "description": "This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -67854,7 +67851,7 @@
"subcategoryLabel": "Comments",
"contentType": "application/json",
"notes": [],
- "descriptionHTML": "This endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
+ "descriptionHTML": "This endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
"bodyParameters": [
{
"type": "string",
@@ -67870,28 +67867,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -67989,13 +67986,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"performed_via_github_app\": null,\n \"label\": {\n \"name\": \"label\",\n \"color\": \"red\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -68093,13 +68090,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -68272,18 +68269,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -68456,18 +68453,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -68540,19 +68537,19 @@
"subcategoryLabel": "Labels",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -68637,18 +68634,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -68747,34 +68744,34 @@
"categoryLabel": "Issues",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Users with push access can lock an issue or pull request's conversation.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Users with push access can lock an issue or pull request's conversation.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -68859,25 +68856,25 @@
"category": "issues",
"categoryLabel": "Issues",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Users with push access can unlock an issue's conversation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Users with push access can unlock an issue's conversation.
"
+ ]
},
{
"verb": "get",
@@ -68991,18 +68988,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -69136,19 +69133,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69227,15 +69224,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/issues/:issue_number/reactions/:reaction_id.
\nDelete a reaction to an issue.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/issues/:issue_number/reactions/:reaction_id.
\nDelete a reaction to an issue.
"
+ ]
},
{
"verb": "get",
@@ -69326,24 +69323,24 @@
"subcategoryLabel": "Timeline",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -69429,7 +69426,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n }\n]\n
"
}
]
@@ -69574,13 +69571,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69658,13 +69655,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -69736,15 +69733,15 @@
"subcategory": "keys",
"subcategoryLabel": "Keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deploy keys are immutable. If you need to update a key, remove the key and create a new one instead.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deploy keys are immutable. If you need to update a key, remove the key and create a new one instead.
"
+ ]
},
{
"verb": "get",
@@ -69830,13 +69827,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -69980,18 +69977,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -70068,13 +70065,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -70224,7 +70221,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug%20:bug:\",\n \"name\": \"bug :bug:\",\n \"description\": \"Small bug fix required\",\n \"color\": \"b01f26\",\n \"default\": true\n}\n
"
}
]
@@ -70297,14 +70294,14 @@
"subcategoryLabel": "Labels",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -70368,7 +70365,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"C\": 78769,\n \"Python\": 7769\n}\n
"
}
]
@@ -70432,19 +70429,19 @@
"subcategoryLabel": "Lfs",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "We will return a 403 with one of the following messages:\n\n- Git LFS support not enabled because Git LFS is globally disabled.\n- Git LFS support not enabled because Git LFS is disabled for the root repository in the network.\n- Git LFS support not enabled because Git LFS is disabled for ."
+ "description": "We will return a 403 with one of the following messages:
\n\n- Git LFS support not enabled because Git LFS is globally disabled.
\n- Git LFS support not enabled because Git LFS is disabled for the root repository in the network.
\n- Git LFS support not enabled because Git LFS is disabled for .
\n
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -70505,14 +70502,14 @@
"subcategoryLabel": "Lfs",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -70576,7 +70573,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"LICENSE\",\n \"path\": \"LICENSE\",\n \"sha\": \"401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"size\": 1077,\n \"url\": \"https://api.github.com/repos/benbalter/gman/contents/LICENSE?ref=master\",\n \"html_url\": \"https://github.com/benbalter/gman/blob/master/LICENSE\",\n \"git_url\": \"https://api.github.com/repos/benbalter/gman/git/blobs/401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"download_url\": \"https://raw.githubusercontent.com/benbalter/gman/master/LICENSE?lab=true\",\n \"type\": \"file\",\n \"content\": \"VGhlIE1JVCBMaWNlbnNlIChNSVQpCgpDb3B5cmlnaHQgKGMpIDIwMTMgQmVu\\nIEJhbHRlcgoKUGVybWlzc2lvbiBpcyBoZXJlYnkgZ3JhbnRlZCwgZnJlZSBv\\nZiBjaGFyZ2UsIHRvIGFueSBwZXJzb24gb2J0YWluaW5nIGEgY29weSBvZgp0\\naGlzIHNvZnR3YXJlIGFuZCBhc3NvY2lhdGVkIGRvY3VtZW50YXRpb24gZmls\\nZXMgKHRoZSAiU29mdHdhcmUiKSwgdG8gZGVhbCBpbgp0aGUgU29mdHdhcmUg\\nd2l0aG91dCByZXN0cmljdGlvbiwgaW5jbHVkaW5nIHdpdGhvdXQgbGltaXRh\\ndGlvbiB0aGUgcmlnaHRzIHRvCnVzZSwgY29weSwgbW9kaWZ5LCBtZXJnZSwg\\ncHVibGlzaCwgZGlzdHJpYnV0ZSwgc3VibGljZW5zZSwgYW5kL29yIHNlbGwg\\nY29waWVzIG9mCnRoZSBTb2Z0d2FyZSwgYW5kIHRvIHBlcm1pdCBwZXJzb25z\\nIHRvIHdob20gdGhlIFNvZnR3YXJlIGlzIGZ1cm5pc2hlZCB0byBkbyBzbywK\\nc3ViamVjdCB0byB0aGUgZm9sbG93aW5nIGNvbmRpdGlvbnM6CgpUaGUgYWJv\\ndmUgY29weXJpZ2h0IG5vdGljZSBhbmQgdGhpcyBwZXJtaXNzaW9uIG5vdGlj\\nZSBzaGFsbCBiZSBpbmNsdWRlZCBpbiBhbGwKY29waWVzIG9yIHN1YnN0YW50\\naWFsIHBvcnRpb25zIG9mIHRoZSBTb2Z0d2FyZS4KClRIRSBTT0ZUV0FSRSBJ\\nUyBQUk9WSURFRCAiQVMgSVMiLCBXSVRIT1VUIFdBUlJBTlRZIE9GIEFOWSBL\\nSU5ELCBFWFBSRVNTIE9SCklNUExJRUQsIElOQ0xVRElORyBCVVQgTk9UIExJ\\nTUlURUQgVE8gVEhFIFdBUlJBTlRJRVMgT0YgTUVSQ0hBTlRBQklMSVRZLCBG\\nSVRORVNTCkZPUiBBIFBBUlRJQ1VMQVIgUFVSUE9TRSBBTkQgTk9OSU5GUklO\\nR0VNRU5ULiBJTiBOTyBFVkVOVCBTSEFMTCBUSEUgQVVUSE9SUyBPUgpDT1BZ\\nUklHSFQgSE9MREVSUyBCRSBMSUFCTEUgRk9SIEFOWSBDTEFJTSwgREFNQUdF\\nUyBPUiBPVEhFUiBMSUFCSUxJVFksIFdIRVRIRVIKSU4gQU4gQUNUSU9OIE9G\\nIENPTlRSQUNULCBUT1JUIE9SIE9USEVSV0lTRSwgQVJJU0lORyBGUk9NLCBP\\nVVQgT0YgT1IgSU4KQ09OTkVDVElPTiBXSVRIIFRIRSBTT0ZUV0FSRSBPUiBU\\nSEUgVVNFIE9SIE9USEVSIERFQUxJTkdTIElOIFRIRSBTT0ZUV0FSRS4K\\n\",\n \"encoding\": \"base64\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/benbalter/gman/contents/LICENSE?ref=master\",\n \"git\": \"https://api.github.com/repos/benbalter/gman/git/blobs/401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"html\": \"https://github.com/benbalter/gman/blob/master/LICENSE\"\n },\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n}\n
"
}
]
@@ -70681,18 +70678,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The branch has been successfully synced with the upstream repository",
+ "description": "The branch has been successfully synced with the upstream repository
",
"payload": "{\n \"message\": \"Successfully fetched and fast-forwarded from upstream defunkt:main\",\n \"merge_type\": \"fast-forward\",\n \"base_branch\": \"defunkt:main\"\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "The branch could not be synced because of a merge conflict"
+ "description": "The branch could not be synced because of a merge conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "The branch could not be synced for some other reason"
+ "description": "The branch could not be synced for some other reason
"
}
]
},
@@ -70835,33 +70832,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Successful Response (The resulting merge commit)",
+ "description": "Successful Response (The resulting merge commit)
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ],\n \"stats\": {\n \"additions\": 104,\n \"deletions\": 4,\n \"total\": 108\n },\n \"files\": [\n {\n \"filename\": \"file1.txt\",\n \"additions\": 10,\n \"deletions\": 2,\n \"changes\": 12,\n \"status\": \"modified\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"patch\": \"@@ -29,7 +29,7 @@\\n.....\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when already merged"
+ "description": "Response when already merged
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found when the base or head does not exist"
+ "description": "Not Found when the base or head does not exist
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when there is a merge conflict"
+ "description": "Conflict when there is a merge conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -70995,13 +70992,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -71176,18 +71173,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -71265,13 +71262,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -71453,7 +71450,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
}
]
@@ -71527,19 +71524,19 @@
"subcategoryLabel": "Milestones",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -71635,7 +71632,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
}
]
@@ -71768,7 +71765,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n }\n]\n
"
}
]
@@ -71854,19 +71851,19 @@
"subcategoryLabel": "Notifications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Marks all notifications in a repository as \"read\" removes them from the default view on GitHub. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List repository notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
}
],
- "descriptionHTML": "Marks all notifications in a repository as \"read\" removes them from the default view on GitHub. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List repository notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"bodyParameters": [
{
"type": "string",
@@ -71942,13 +71939,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages\",\n \"status\": \"built\",\n \"cname\": \"developer.github.com\",\n \"custom_404\": false,\n \"html_url\": \"https://developer.github.com\",\n \"source\": {\n \"branch\": \"master\",\n \"path\": \"/\"\n },\n \"public\": true,\n \"https_certificate\": {\n \"state\": \"approved\",\n \"description\": \"Certificate is approved\",\n \"domains\": [\n \"developer.github.com\"\n ],\n \"expires_at\": \"2021-05-22\"\n },\n \"https_enforced\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -72105,18 +72102,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages\",\n \"status\": \"built\",\n \"cname\": \"developer.github.com\",\n \"custom_404\": false,\n \"html_url\": \"https://developer.github.com\",\n \"source\": {\n \"branch\": \"master\",\n \"path\": \"/\"\n },\n \"public\": true,\n \"https_certificate\": {\n \"state\": \"approved\",\n \"description\": \"Certificate is approved\",\n \"domains\": [\n \"developer.github.com\"\n ],\n \"expires_at\": \"2021-05-22\"\n },\n \"https_enforced\": true\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -72356,24 +72353,24 @@
"categoryLabel": "Pages",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Updates information for a GitHub Pages site. For more information, see \"About GitHub Pages.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Updates information for a GitHub Pages site. For more information, see \"About GitHub Pages.
",
"bodyParameters": [
{
"type": "string or nullable",
@@ -72502,24 +72499,24 @@
"categoryLabel": "Pages",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -72603,7 +72600,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n }\n]\n
"
}
]
@@ -72670,7 +72667,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/latest\",\n \"status\": \"queued\"\n}\n
"
}
]
@@ -72737,7 +72734,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n}\n
"
}
]
@@ -72813,7 +72810,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n}\n
"
}
]
@@ -72880,28 +72877,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"domain\": {\n \"host\": \"example.com\",\n \"uri\": \"http://example.com/\",\n \"nameservers\": \"default\",\n \"dns_resolves\": true,\n \"is_proxied\": false,\n \"is_cloudflare_ip\": false,\n \"is_fastly_ip\": false,\n \"is_old_ip_address\": false,\n \"is_a_record\": true,\n \"has_cname_record\": false,\n \"has_mx_records_present\": false,\n \"is_valid_domain\": true,\n \"is_apex_domain\": true,\n \"should_be_a_record\": true,\n \"is_cname_to_github_user_domain\": false,\n \"is_cname_to_pages_dot_github_dot_com\": false,\n \"is_cname_to_fastly\": false,\n \"is_pointed_to_github_pages_ip\": true,\n \"is_non_github_pages_ip_present\": false,\n \"is_pages_domain\": false,\n \"is_served_by_pages\": true,\n \"is_valid\": true,\n \"reason\": null,\n \"responds_to_https\": true,\n \"enforces_https\": true,\n \"https_error\": null,\n \"is_https_eligible\": true,\n \"caa_error\": null\n },\n \"alt_domain\": {\n \"host\": \"www.example.com\",\n \"uri\": \"http://www.example.com/\",\n \"nameservers\": \"default\",\n \"dns_resolves\": true,\n \"is_proxied\": false,\n \"is_cloudflare_ip\": false,\n \"is_fastly_ip\": false,\n \"is_old_ip_address\": false,\n \"is_a_record\": true,\n \"has_cname_record\": false,\n \"has_mx_records_present\": false,\n \"is_valid_domain\": true,\n \"is_apex_domain\": true,\n \"should_be_a_record\": true,\n \"is_cname_to_github_user_domain\": false,\n \"is_cname_to_pages_dot_github_dot_com\": false,\n \"is_cname_to_fastly\": false,\n \"is_pointed_to_github_pages_ip\": true,\n \"is_non_github_pages_ip_present\": false,\n \"is_pages_domain\": false,\n \"is_served_by_pages\": true,\n \"is_valid\": true,\n \"reason\": null,\n \"responds_to_https\": true,\n \"enforces_https\": true,\n \"https_error\": null,\n \"is_https_eligible\": true,\n \"caa_error\": null\n }\n}\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Empty response"
+ "description": "Empty response
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Custom domains are not available for GitHub Pages"
+ "description": "Custom domains are not available for GitHub Pages
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "There isn't a CNAME for this page"
+ "description": "There isn't a CNAME for this page
"
}
]
},
@@ -73003,33 +73000,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -73152,33 +73149,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -73331,18 +73328,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -73559,18 +73556,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -73697,7 +73694,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n }\n]\n
"
}
]
@@ -73776,13 +73773,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -73898,7 +73895,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
}
]
@@ -73971,20 +73968,20 @@
"subcategory": "comments",
"subcategoryLabel": "Comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a review comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a review comment.
"
+ ]
},
{
"verb": "get",
@@ -74098,13 +74095,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -74238,19 +74235,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -74329,15 +74326,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/pulls/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a pull request review comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/pulls/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a pull request review comment.
"
+ ]
},
{
"verb": "get",
@@ -74410,23 +74407,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Pass the appropriate [media type](https://docs.github.com/rest/overview/media-types/#commits-commit-comparison-and-pull-requests) to fetch diff and patch formats.",
+ "description": "Pass the appropriate media type to fetch diff and patch formats.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -74619,18 +74616,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -74798,29 +74795,29 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when the codespace was successfully created",
- "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
+ "description": "Response when the codespace was successfully created
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"devcontainer_path\": \".devcontainer/devcontainer.json\",\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response when the codespace creation partially failed but is being retried in the background",
- "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
+ "description": "Response when the codespace creation partially failed but is being retried in the background
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"devcontainer_path\": \".devcontainer/devcontainer.json\",\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -74957,7 +74954,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n }\n]\n
"
}
]
@@ -75259,18 +75256,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -75396,13 +75393,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 426899381,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -75497,7 +75494,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n]\n
"
}
]
@@ -75593,18 +75590,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"sha\": \"bbcd538c8e72b8c175046e27cc8f907076331401\",\n \"filename\": \"file1.txt\",\n \"status\": \"added\",\n \"additions\": 103,\n \"deletions\": 21,\n \"changes\": 124,\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/file1.txt?ref=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"patch\": \"@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -75674,19 +75671,19 @@
"categoryLabel": "Pulls",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if pull request has been merged"
+ "description": "Response if pull request has been merged
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if pull request has not been merged"
+ "description": "Not Found if pull request has not been merged
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -75857,35 +75854,35 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if merge was successful",
+ "description": "if merge was successful
",
"payload": "{\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "405",
"httpStatusMessage": "Method Not Allowed",
- "description": "Method Not Allowed if merge cannot be performed",
+ "description": "Method Not Allowed if merge cannot be performed
",
"payload": "{\n \"message\": \"Pull Request is not mergeable\"\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict if sha was provided and pull request head did not match",
+ "description": "Conflict if sha was provided and pull request head did not match
",
"payload": "{\n \"message\": \"Head branch was modified. Review and try the merge again.\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -75982,7 +75979,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n}\n
"
}
]
@@ -76145,18 +76142,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if user is not a collaborator"
+ "description": "Unprocessable Entity if user is not a collaborator
"
}
]
},
@@ -76282,12 +76279,12 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -76410,7 +76407,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The list of reviews returns in chronological order.",
+ "description": "The list of reviews returns in chronological order.
",
"payload": "[\n {\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -76697,18 +76694,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -76981,13 +76978,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -77112,13 +77109,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change. And add more about this.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -77205,18 +77202,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -77323,13 +77320,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -77469,18 +77466,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"DISMISSED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -77630,23 +77627,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -77757,18 +77754,18 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"message\": \"Updating pull request branch.\",\n \"url\": \"https://github.com/repos/octocat/Hello-World/pulls/53\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -77846,18 +77843,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"file\",\n \"encoding\": \"base64\",\n \"size\": 5362,\n \"name\": \"README.md\",\n \"path\": \"README.md\",\n \"content\": \"encoded content ...\",\n \"sha\": \"3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"git_url\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"html_url\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\",\n \"download_url\": \"https://raw.githubusercontent.com/octokit/octokit.rb/master/README.md\",\n \"_links\": {\n \"git\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"self\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"html\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -77946,18 +77943,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"file\",\n \"encoding\": \"base64\",\n \"size\": 5362,\n \"name\": \"README.md\",\n \"path\": \"README.md\",\n \"content\": \"encoded content ...\",\n \"sha\": \"3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"git_url\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"html_url\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\",\n \"download_url\": \"https://raw.githubusercontent.com/octokit/octokit.rb/master/README.md\",\n \"_links\": {\n \"git\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"self\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"html\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -78043,13 +78040,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -78292,18 +78289,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if the discussion category name is invalid"
+ "description": "Not Found if the discussion category name is invalid
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -78381,23 +78378,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "To download the asset's binary content, set the `Accept` header of the request to [`application/octet-stream`](https://docs.github.com/rest/overview/media-types). The API will either redirect the client to the location, or stream it directly if possible. API clients should handle both a `200` or `302` response.",
+ "description": "To download the asset's binary content, set the Accept header of the request to application/octet-stream. The API will either redirect the client to the location, or stream it directly if possible. API clients should handle both a 200 or 302 response.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Found"
+ "description": "Found
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -78547,7 +78544,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -78621,14 +78618,14 @@
"subcategoryLabel": "Assets",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -78787,13 +78784,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Name and body of generated release notes",
+ "description": "Name and body of generated release notes
",
"payload": "{\n \"name\": \"Release v1.0.0 is now available!\",\n \"body\": \"##Changes in Release v1.0.0 ... ##Contributors @monalisa\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -78859,7 +78856,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
}
]
@@ -78937,13 +78934,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -79019,13 +79016,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "**Note:** This returns an `upload_url` key corresponding to the endpoint for uploading release assets. This key is a [hypermedia resource](https://docs.github.com/rest/overview/resources-in-the-rest-api#hypermedia).",
+ "description": "Note: This returns an upload_url key corresponding to the endpoint for uploading release assets. This key is a hypermedia resource.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -79249,13 +79246,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if the discussion category name is invalid"
+ "description": "Not Found if the discussion category name is invalid
"
}
]
},
@@ -79325,15 +79322,15 @@
"category": "releases",
"categoryLabel": "Releases",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Users with push access to the repository can delete a release.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Users with push access to the repository can delete a release.
"
+ ]
},
{
"verb": "get",
@@ -79429,7 +79426,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
}
]
@@ -79548,13 +79545,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response for successful upload",
+ "description": "Response for successful upload
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Response if you upload an asset with the same filename as another uploaded asset"
+ "description": "Response if you upload an asset with the same filename as another uploaded asset
"
}
]
},
@@ -79684,19 +79681,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -79816,18 +79813,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"number\": 2,\n \"created_at\": \"2020-11-06T18:48:51Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/2\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2/locations\",\n \"state\": \"resolved\",\n \"resolution\": \"false_positive\",\n \"resolved_at\": \"2020-11-07T02:47:13Z\",\n \"resolved_by\": {\n \"login\": \"monalisa\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjI=\",\n \"avatar_url\": \"https://alambic.github.com/avatars/u/2?\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/monalisa\",\n \"followers_url\": \"https://api.github.com/users/monalisa/followers\",\n \"following_url\": \"https://api.github.com/users/monalisa/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/monalisa/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/monalisa/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/monalisa/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/monalisa/orgs\",\n \"repos_url\": \"https://api.github.com/users/monalisa/repos\",\n \"events_url\": \"https://api.github.com/users/monalisa/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/monalisa/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"secret_type\": \"adafruit_io_key\",\n \"secret\": \"aio_XXXXXXXXXXXXXXXXXXXXXXXXXXXX\"\n },\n {\n \"number\": 1,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/repo/secret-scanning/alerts/1\",\n \"html_url\": \"https://github.com/owner/repo/security/secret-scanning/1\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/1/locations\",\n \"state\": \"open\",\n \"resolution\": null,\n \"resolved_at\": null,\n \"resolved_by\": null,\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public or secret scanning is disabled for the repository"
+ "description": "Repository is public or secret scanning is disabled for the repository
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -79905,23 +79902,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/42\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42/locations\",\n \"state\": \"open\",\n \"resolution\": null,\n \"resolved_at\": null,\n \"resolved_by\": null,\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found"
+ "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -80079,23 +80076,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/42\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42/locations\",\n \"state\": \"resolved\",\n \"resolution\": \"used_in_tests\",\n \"resolved_at\": \"2020-11-16T22:42:07Z\",\n \"resolved_by\": {\n \"login\": \"monalisa\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjI=\",\n \"avatar_url\": \"https://alambic.github.com/avatars/u/2?\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/monalisa\",\n \"followers_url\": \"https://api.github.com/users/monalisa/followers\",\n \"following_url\": \"https://api.github.com/users/monalisa/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/monalisa/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/monalisa/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/monalisa/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/monalisa/orgs\",\n \"repos_url\": \"https://api.github.com/users/monalisa/repos\",\n \"events_url\": \"https://api.github.com/users/monalisa/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/monalisa/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found"
+ "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "State does not match the resolution"
+ "description": "State does not match the resolution
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -80193,18 +80190,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"type\": \"commit\",\n \"details\": {\n \"path\": \"/example/secrets.txt\",\n \"start_line\": 1,\n \"end_line\": 1,\n \"start_column\": 1,\n \"end_column\": 64,\n \"blob_sha\": \"af5626b4a114abcb82d63db7c8082c3c4756e51b\",\n \"blob_url\": \"https://api.github.com/repos/octocat/hello-world/git/blobs/af5626b4a114abcb82d63db7c8082c3c4756e51b\",\n \"commit_sha\": \"f14d7debf9775f957cf4f1e8176da0786431f72b\",\n \"commit_url\": \"https://api.github.com/repos/octocat/hello-world/git/commits/f14d7debf9775f957cf4f1e8176da0786431f72b\"\n }\n },\n {\n \"type\": \"commit\",\n \"details\": {\n \"path\": \"/example/secrets.txt\",\n \"start_line\": 5,\n \"end_line\": 5,\n \"start_column\": 1,\n \"end_column\": 64,\n \"blob_sha\": \"9def38117ab2d8355b982429aa924e268b4b0065\",\n \"blob_url\": \"https://api.github.com/repos/octocat/hello-world/git/blobs/9def38117ab2d8355b982429aa924e268b4b0065\",\n \"commit_sha\": \"588483b99a46342501d99e3f10630cfc1219ea32\",\n \"commit_url\": \"https://api.github.com/repos/octocat/hello-world/git/commits/588483b99a46342501d99e3f10630cfc1219ea32\"\n }\n },\n {\n \"type\": \"commit\",\n \"details\": {\n \"path\": \"/example/secrets.txt\",\n \"start_line\": 12,\n \"end_line\": 12,\n \"start_column\": 1,\n \"end_column\": 64,\n \"blob_sha\": \"0b33e9c66e19f7fb15137a82ff1c04c10cba6caf\",\n \"blob_url\": \"https://api.github.com/repos/octocat/hello-world/git/blobs/0b33e9c66e19f7fb15137a82ff1c04c10cba6caf\",\n \"commit_sha\": \"9def38117ab2d8355b982429aa924e268b4b0065\",\n \"commit_url\": \"https://api.github.com/repos/octocat/hello-world/git/commits/9def38117ab2d8355b982429aa924e268b4b0065\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found"
+ "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -80304,7 +80301,7 @@
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -80372,18 +80369,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Returns a weekly aggregate of the number of additions and deletions pushed to a repository.",
+ "description": "Returns a weekly aggregate of the number of additions and deletions pushed to a repository.
",
"payload": "[\n [\n 1302998400,\n 1124,\n -435\n ]\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -80451,18 +80448,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"days\": [\n 0,\n 3,\n 26,\n 20,\n 39,\n 1,\n 0\n ],\n \"total\": 89,\n \"week\": 1336280400\n }\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -80530,18 +80527,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "* `w` - Start of the week, given as a [Unix timestamp](http://en.wikipedia.org/wiki/Unix_time).\n* `a` - Number of additions\n* `d` - Number of deletions\n* `c` - Number of commits",
+ "description": "\nw - Start of the week, given as a Unix timestamp. \na - Number of additions \nd - Number of deletions \nc - Number of commits \n
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"total\": 135,\n \"weeks\": [\n {\n \"w\": 1367712000,\n \"a\": 6898,\n \"d\": 77,\n \"c\": 10\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -80609,13 +80606,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The array order is oldest week (index 0) to most recent week.",
+ "description": "The array order is oldest week (index 0) to most recent week.
",
"payload": "{\n \"all\": [\n 11,\n 21,\n 15,\n 2,\n 8,\n 1,\n 8,\n 23,\n 17,\n 21,\n 11,\n 10,\n 33,\n 91,\n 38,\n 34,\n 22,\n 23,\n 32,\n 3,\n 43,\n 87,\n 71,\n 18,\n 13,\n 5,\n 13,\n 16,\n 66,\n 27,\n 12,\n 45,\n 110,\n 117,\n 13,\n 8,\n 18,\n 9,\n 19,\n 26,\n 39,\n 12,\n 20,\n 31,\n 46,\n 91,\n 45,\n 10,\n 24,\n 9,\n 29,\n 7\n ],\n \"owner\": [\n 3,\n 2,\n 3,\n 0,\n 2,\n 0,\n 5,\n 14,\n 7,\n 9,\n 1,\n 5,\n 0,\n 48,\n 19,\n 2,\n 0,\n 1,\n 10,\n 2,\n 23,\n 40,\n 35,\n 8,\n 8,\n 2,\n 10,\n 6,\n 30,\n 0,\n 2,\n 9,\n 53,\n 104,\n 3,\n 3,\n 10,\n 4,\n 7,\n 11,\n 21,\n 4,\n 4,\n 22,\n 26,\n 63,\n 11,\n 2,\n 14,\n 1,\n 10,\n 3\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -80683,13 +80680,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "For example, `[2, 14, 25]` indicates that there were 25 total commits, during the 2:00pm hour on Tuesdays. All times are based on the time zone of individual commits.",
+ "description": "For example, [2, 14, 25] indicates that there were 25 total commits, during the 2:00pm hour on Tuesdays. All times are based on the time zone of individual commits.
",
"payload": "[\n [\n 0,\n 0,\n 5\n ],\n [\n 0,\n 1,\n 43\n ],\n [\n 0,\n 2,\n 21\n ]\n]\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -80876,7 +80873,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -80965,7 +80962,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -81034,18 +81031,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if you subscribe to the repository",
+ "description": "if you subscribe to the repository
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/repos/octocat/example/subscription\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if you don't subscribe to the repository"
+ "description": "Not Found if you don't subscribe to the repository
"
}
]
},
@@ -81163,7 +81160,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/repos/octocat/example/subscription\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\"\n}\n
"
}
]
@@ -81226,15 +81223,15 @@
"subcategory": "watching",
"subcategoryLabel": "Watching",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This endpoint should only be used to stop watching a repository. To control whether or not you wish to receive notifications from a repository, set the repository's subscription manually.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This endpoint should only be used to stop watching a repository. To control whether or not you wish to receive notifications from a repository, set the repository's subscription manually.
"
+ ]
},
{
"verb": "get",
@@ -81318,7 +81315,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"v0.1\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"zipball_url\": \"https://github.com/octocat/Hello-World/zipball/v0.1\",\n \"tarball_url\": \"https://github.com/octocat/Hello-World/tarball/v0.1\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
}
]
@@ -81390,15 +81387,15 @@
"subcategory": "contents",
"subcategoryLabel": "Contents",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a tar archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a tar archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
"
+ ]
},
{
"verb": "get",
@@ -81482,7 +81479,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
}
]
@@ -81569,13 +81566,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"names\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -81690,18 +81687,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"names\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -81785,13 +81782,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"count\": 173,\n \"uniques\": 128,\n \"clones\": [\n {\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"count\": 2,\n \"uniques\": 1\n },\n {\n \"timestamp\": \"2016-10-11T00:00:00Z\",\n \"count\": 17,\n \"uniques\": 16\n },\n {\n \"timestamp\": \"2016-10-12T00:00:00Z\",\n \"count\": 21,\n \"uniques\": 15\n },\n {\n \"timestamp\": \"2016-10-13T00:00:00Z\",\n \"count\": 8,\n \"uniques\": 7\n },\n {\n \"timestamp\": \"2016-10-14T00:00:00Z\",\n \"count\": 5,\n \"uniques\": 5\n },\n {\n \"timestamp\": \"2016-10-15T00:00:00Z\",\n \"count\": 2,\n \"uniques\": 2\n },\n {\n \"timestamp\": \"2016-10-16T00:00:00Z\",\n \"count\": 8,\n \"uniques\": 7\n },\n {\n \"timestamp\": \"2016-10-17T00:00:00Z\",\n \"count\": 26,\n \"uniques\": 15\n },\n {\n \"timestamp\": \"2016-10-18T00:00:00Z\",\n \"count\": 19,\n \"uniques\": 17\n },\n {\n \"timestamp\": \"2016-10-19T00:00:00Z\",\n \"count\": 19,\n \"uniques\": 14\n },\n {\n \"timestamp\": \"2016-10-20T00:00:00Z\",\n \"count\": 19,\n \"uniques\": 15\n },\n {\n \"timestamp\": \"2016-10-21T00:00:00Z\",\n \"count\": 9,\n \"uniques\": 7\n },\n {\n \"timestamp\": \"2016-10-22T00:00:00Z\",\n \"count\": 5,\n \"uniques\": 5\n },\n {\n \"timestamp\": \"2016-10-23T00:00:00Z\",\n \"count\": 6,\n \"uniques\": 5\n },\n {\n \"timestamp\": \"2016-10-24T00:00:00Z\",\n \"count\": 7,\n \"uniques\": 5\n }\n ]\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -81859,13 +81856,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"path\": \"/github/hubot\",\n \"title\": \"github/hubot: A customizable life embetterment robot.\",\n \"count\": 3542,\n \"uniques\": 2225\n },\n {\n \"path\": \"/github/hubot/blob/master/docs/scripting.md\",\n \"title\": \"hubot/scripting.md at master · github/hubot · GitHub\",\n \"count\": 1707,\n \"uniques\": 804\n },\n {\n \"path\": \"/github/hubot/tree/master/docs\",\n \"title\": \"hubot/docs at master · github/hubot · GitHub\",\n \"count\": 685,\n \"uniques\": 435\n },\n {\n \"path\": \"/github/hubot/tree/master/src\",\n \"title\": \"hubot/src at master · github/hubot · GitHub\",\n \"count\": 577,\n \"uniques\": 347\n },\n {\n \"path\": \"/github/hubot/blob/master/docs/index.md\",\n \"title\": \"hubot/index.md at master · github/hubot · GitHub\",\n \"count\": 379,\n \"uniques\": 259\n },\n {\n \"path\": \"/github/hubot/blob/master/docs/adapters.md\",\n \"title\": \"hubot/adapters.md at master · github/hubot · GitHub\",\n \"count\": 354,\n \"uniques\": 201\n },\n {\n \"path\": \"/github/hubot/tree/master/examples\",\n \"title\": \"hubot/examples at master · github/hubot · GitHub\",\n \"count\": 340,\n \"uniques\": 260\n },\n {\n \"path\": \"/github/hubot/blob/master/docs/deploying/heroku.md\",\n \"title\": \"hubot/heroku.md at master · github/hubot · GitHub\",\n \"count\": 324,\n \"uniques\": 217\n },\n {\n \"path\": \"/github/hubot/blob/master/src/robot.coffee\",\n \"title\": \"hubot/robot.coffee at master · github/hubot · GitHub\",\n \"count\": 293,\n \"uniques\": 191\n },\n {\n \"path\": \"/github/hubot/blob/master/LICENSE.md\",\n \"title\": \"hubot/LICENSE.md at master · github/hubot · GitHub\",\n \"count\": 281,\n \"uniques\": 222\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -81933,13 +81930,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"referrer\": \"Google\",\n \"count\": 4,\n \"uniques\": 3\n },\n {\n \"referrer\": \"stackoverflow.com\",\n \"count\": 2,\n \"uniques\": 2\n },\n {\n \"referrer\": \"eggsonbread.com\",\n \"count\": 1,\n \"uniques\": 1\n },\n {\n \"referrer\": \"yandex.ru\",\n \"count\": 1,\n \"uniques\": 1\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -82023,13 +82020,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"count\": 14850,\n \"uniques\": 3782,\n \"views\": [\n {\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"count\": 440,\n \"uniques\": 143\n },\n {\n \"timestamp\": \"2016-10-11T00:00:00Z\",\n \"count\": 1308,\n \"uniques\": 414\n },\n {\n \"timestamp\": \"2016-10-12T00:00:00Z\",\n \"count\": 1486,\n \"uniques\": 452\n },\n {\n \"timestamp\": \"2016-10-13T00:00:00Z\",\n \"count\": 1170,\n \"uniques\": 401\n },\n {\n \"timestamp\": \"2016-10-14T00:00:00Z\",\n \"count\": 868,\n \"uniques\": 266\n },\n {\n \"timestamp\": \"2016-10-15T00:00:00Z\",\n \"count\": 495,\n \"uniques\": 157\n },\n {\n \"timestamp\": \"2016-10-16T00:00:00Z\",\n \"count\": 524,\n \"uniques\": 175\n },\n {\n \"timestamp\": \"2016-10-17T00:00:00Z\",\n \"count\": 1263,\n \"uniques\": 412\n },\n {\n \"timestamp\": \"2016-10-18T00:00:00Z\",\n \"count\": 1402,\n \"uniques\": 417\n },\n {\n \"timestamp\": \"2016-10-19T00:00:00Z\",\n \"count\": 1394,\n \"uniques\": 424\n },\n {\n \"timestamp\": \"2016-10-20T00:00:00Z\",\n \"count\": 1492,\n \"uniques\": 448\n },\n {\n \"timestamp\": \"2016-10-21T00:00:00Z\",\n \"count\": 1153,\n \"uniques\": 332\n },\n {\n \"timestamp\": \"2016-10-22T00:00:00Z\",\n \"count\": 566,\n \"uniques\": 168\n },\n {\n \"timestamp\": \"2016-10-23T00:00:00Z\",\n \"count\": 675,\n \"uniques\": 184\n },\n {\n \"timestamp\": \"2016-10-24T00:00:00Z\",\n \"count\": 614,\n \"uniques\": 237\n }\n ]\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -82161,7 +82158,7 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n}\n
"
}
]
@@ -82222,20 +82219,20 @@
"category": "repos",
"categoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Shows whether dependency alerts are enabled or disabled for a repository. The authenticated user must have admin access to the repository. For more information, see \"About security alerts for vulnerable dependencies\".
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if repository is enabled with vulnerability alerts"
+ "description": "Response if repository is enabled with vulnerability alerts
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if repository is not enabled with vulnerability alerts"
+ "description": "Not Found if repository is not enabled with vulnerability alerts
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Shows whether dependency alerts are enabled or disabled for a repository. The authenticated user must have admin access to the repository. For more information, see \"About security alerts for vulnerable dependencies\".
"
+ ]
},
{
"verb": "put",
@@ -82293,15 +82290,15 @@
"category": "repos",
"categoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Enables dependency alerts and the dependency graph for a repository. The authenticated user must have admin access to the repository. For more information, see \"About security alerts for vulnerable dependencies\".
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Enables dependency alerts and the dependency graph for a repository. The authenticated user must have admin access to the repository. For more information, see \"About security alerts for vulnerable dependencies\".
"
+ ]
},
{
"verb": "delete",
@@ -82359,15 +82356,15 @@
"category": "repos",
"categoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Disables dependency alerts and the dependency graph for a repository. The authenticated user must have admin access to the repository. For more information, see \"About security alerts for vulnerable dependencies\".
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Disables dependency alerts and the dependency graph for a repository. The authenticated user must have admin access to the repository. For more information, see \"About security alerts for vulnerable dependencies\".
"
+ ]
},
{
"verb": "get",
@@ -82436,15 +82433,15 @@
"subcategory": "contents",
"subcategoryLabel": "Contents",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a zip archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a zip archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
"
+ ]
},
{
"verb": "post",
@@ -82626,7 +82623,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"allow_auto_merge\": false,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n }\n}\n
"
}
]
@@ -82685,18 +82682,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -82785,7 +82782,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"secrets\": [\n {\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n },\n {\n \"name\": \"GIST_ID\",\n \"created_at\": \"2020-01-10T10:59:22Z\",\n \"updated_at\": \"2020-01-11T11:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -82855,7 +82852,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -82935,7 +82932,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n}\n
"
}
]
@@ -82988,7 +82985,7 @@
}
],
"summary": "Create or update an environment secret",
- "description": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -83053,15 +83050,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -83153,15 +83150,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in an environment using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Default response"
+ "description": "Default response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in an environment using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -83259,7 +83256,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:api:messages:2.0:ListResponse\"\n ],\n \"totalResults\": 2,\n \"itemsPerPage\": 2,\n \"startIndex\": 1,\n \"Resources\": [\n {\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:Group\"\n ],\n \"id\": \"abcd27f8-a9aa-11ea-8221-f59b2be9cccc\",\n \"externalId\": null,\n \"displayName\": \"octo-org\",\n \"members\": [\n {\n \"value\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"display\": \"octocat@github.com\"\n },\n {\n \"value\": \"aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"display\": \"hubot@example.com\"\n }\n ],\n \"meta\": {\n \"resourceType\": \"Group\",\n \"created\": \"2020-06-09T03:10:17.000+10:00\",\n \"lastModified\": \"2020-06-09T03:10:17.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Groups/abcd27f8-a9aa-11ea-8221-f59b2be9cccc\"\n }\n },\n {\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:Group\"\n ],\n \"id\": \"5e75bbbb-aa1a-11ea-8644-75ff655cdddd\",\n \"externalId\": null,\n \"displayName\": \"octo-docs-org\",\n \"members\": [\n {\n \"value\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"display\": \"octocat@github.com\"\n }\n ],\n \"meta\": {\n \"resourceType\": \"Group\",\n \"created\": \"2020-06-09T16:28:01.000+10:00\",\n \"lastModified\": \"2020-06-09T16:28:01.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Groups/5e75bbbb-aa1a-11ea-8644-75ff655cdddd\"\n }\n }\n ]\n}\n
"
}
]
@@ -83409,14 +83406,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Note: The SCIM API endpoints for enterprise accounts are currently in beta and are subject to change.
\nProvision an enterprise group, and invite users to the group. This sends invitation emails to the email address of the invited users to join the GitHub organization that the SCIM group corresponds to.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:Group\"\n ],\n \"id\": \"abcd27f8-a9aa-11ea-8221-f59b2be9cccc\",\n \"externalId\": null,\n \"displayName\": \"octo-org\",\n \"members\": [\n {\n \"value\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"display\": \"octocat@github.com\"\n },\n {\n \"value\": \"aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"display\": \"hubot@example.com\"\n }\n ],\n \"meta\": {\n \"resourceType\": \"Group\",\n \"created\": \"2020-06-09T03:10:17.000+10:0\",\n \"lastModified\": \"2020-06-09T03:10:17.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Groups/abcd27f8-a9aa-11ea-8221-f59b2be9cccc\"\n }\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "array of strings",
@@ -83481,6 +83470,14 @@
}
]
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:Group\"\n ],\n \"id\": \"abcd27f8-a9aa-11ea-8221-f59b2be9cccc\",\n \"externalId\": null,\n \"displayName\": \"octo-org\",\n \"members\": [\n {\n \"value\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"display\": \"octocat@github.com\"\n },\n {\n \"value\": \"aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"display\": \"hubot@example.com\"\n }\n ],\n \"meta\": {\n \"resourceType\": \"Group\",\n \"created\": \"2020-06-09T03:10:17.000+10:0\",\n \"lastModified\": \"2020-06-09T03:10:17.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Groups/abcd27f8-a9aa-11ea-8221-f59b2be9cccc\"\n }\n}\n
"
+ }
]
},
{
@@ -83559,7 +83556,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:Group\"\n ],\n \"id\": \"abcd27f8-a9aa-11ea-8221-f59b2be9cccc\",\n \"externalId\": null,\n \"displayName\": \"octo-org\",\n \"members\": [\n {\n \"value\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"display\": \"octocat@github.com\"\n },\n {\n \"value\": \"aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"display\": \"hubot@example.com\"\n }\n ],\n \"meta\": {\n \"resourceType\": \"Group\",\n \"created\": \"2020-06-09T03:10:17.000+10:0\",\n \"lastModified\": \"2020-06-09T03:10:17.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Groups/abcd27f8-a9aa-11ea-8221-f59b2be9cccc\"\n }\n}\n
"
}
]
@@ -83719,14 +83716,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Note: The SCIM API endpoints for enterprise accounts are currently in beta and are subject to change.
\nReplaces an existing provisioned group’s information. You must provide all the information required for the group as if you were provisioning it for the first time. Any existing group information that you don't provide will be removed, including group membership. If you want to only update a specific attribute, use the Update an attribute for a SCIM enterprise group endpoint instead.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:Group\"\n ],\n \"id\": \"abcd27f8-a9aa-11ea-8221-f59b2be9cccc\",\n \"externalId\": null,\n \"displayName\": \"octo-org\",\n \"members\": [\n {\n \"value\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"display\": \"octocat@github.com\"\n },\n {\n \"value\": \"aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"display\": \"hubot@example.com\"\n }\n ],\n \"meta\": {\n \"resourceType\": \"Group\",\n \"created\": \"2020-06-09T03:10:17.000+10:0\",\n \"lastModified\": \"2020-06-09T03:10:17.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Groups/abcd27f8-a9aa-11ea-8221-f59b2be9cccc\"\n }\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "array of strings",
@@ -83791,6 +83780,14 @@
}
]
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:Group\"\n ],\n \"id\": \"abcd27f8-a9aa-11ea-8221-f59b2be9cccc\",\n \"externalId\": null,\n \"displayName\": \"octo-org\",\n \"members\": [\n {\n \"value\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"display\": \"octocat@github.com\"\n },\n {\n \"value\": \"aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"display\": \"hubot@example.com\"\n }\n ],\n \"meta\": {\n \"resourceType\": \"Group\",\n \"created\": \"2020-06-09T03:10:17.000+10:0\",\n \"lastModified\": \"2020-06-09T03:10:17.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Groups/abcd27f8-a9aa-11ea-8221-f59b2be9cccc\"\n }\n}\n
"
+ }
]
},
{
@@ -83993,7 +83990,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:Group\"\n ],\n \"id\": \"abcd27f8-a9aa-11ea-8221-f59b2be9cccc\",\n \"externalId\": null,\n \"displayName\": \"octo-org\",\n \"members\": [\n {\n \"value\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"display\": \"octocat@github.com\"\n }\n ],\n \"meta\": {\n \"resourceType\": \"Group\",\n \"created\": \"2020-06-09T03:10:17.000+10:00\",\n \"lastModified\": \"2020-06-09T03:10:17.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Groups/abcd27f8-a9aa-11ea-8221-f59b2be9cccc\"\n }\n}\n
"
}
],
@@ -84162,15 +84159,15 @@
"subcategory": "scim",
"subcategoryLabel": "Scim",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: The SCIM API endpoints for enterprise accounts are currently in beta and are subject to change.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: The SCIM API endpoints for enterprise accounts are currently in beta and are subject to change.
"
+ ]
},
{
"verb": "get",
@@ -84258,7 +84255,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:api:messages:2.0:ListResponse\"\n ],\n \"totalResults\": 2,\n \"itemsPerPage\": 2,\n \"startIndex\": 1,\n \"Resources\": [\n {\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:User\"\n ],\n \"id\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"externalId\": \"00dowz5dr9oSfDFRA0h7\",\n \"userName\": \"octocat@github.com\",\n \"name\": {\n \"givenName\": \"Mona\",\n \"familyName\": \"Octocat\"\n },\n \"emails\": [\n {\n \"value\": \"octocat@github.com\",\n \"primary\": true,\n \"type\": \"work\"\n }\n ],\n \"groups\": [\n {\n \"value\": \"468dd3fa-a1d6-11ea-9031-15a1f0d7811d\"\n }\n ],\n \"active\": true,\n \"meta\": {\n \"resourceType\": \"User\",\n \"created\": \"2020-05-30T04:02:34.000+10:00\",\n \"lastModified\": \"2020-05-30T04:05:04.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\"\n }\n },\n {\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:User\"\n ],\n \"id\": \"e18b8c34-a6b2-11ea-9d70-54abbd1c8fd5\",\n \"externalId\": \"sdfoiausdofiua\",\n \"userName\": \"hubot@example.com\",\n \"name\": {\n \"givenName\": \"hu\",\n \"familyName\": \"bot\"\n },\n \"emails\": [\n {\n \"value\": \"hubot@example.com\",\n \"type\": \"work\",\n \"primary\": true\n }\n ],\n \"groups\": [],\n \"active\": true,\n \"meta\": {\n \"resourceType\": \"User\",\n \"created\": \"2020-06-05T08:29:40.000+10:00\",\n \"lastModified\": \"2020-06-05T08:30:19.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/e18b8c34-a6b2-11ea-9d70-54abbd1c8fd5\"\n }\n }\n ]\n}\n
"
}
]
@@ -84557,7 +84554,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:User\"\n ],\n \"id\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"externalId\": \"00dowz5dr9oSfDFRA0h7\",\n \"userName\": \"mona.octocat@okta.example.com\",\n \"name\": {\n \"givenName\": \"Mona\",\n \"familyName\": \"Octocat\"\n },\n \"emails\": [\n {\n \"value\": \"mona.octocat@okta.example.com\",\n \"type\": \"work\",\n \"primary\": true\n }\n ],\n \"groups\": [\n {\n \"value\": \"468dd3fa-a1d6-11ea-9031-15a1f0d7811d\"\n }\n ],\n \"active\": true,\n \"meta\": {\n \"resourceType\": \"User\",\n \"created\": \"2017-03-09T16:11:13-05:00\",\n \"lastModified\": \"2017-03-09T16:11:13-05:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\"\n }\n}\n
"
}
],
@@ -84828,7 +84825,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:User\"\n ],\n \"id\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"externalId\": \"00dowz5dr9oSfDFRA0h7\",\n \"userName\": \"mona.octocat@okta.example.com\",\n \"name\": {\n \"givenName\": \"Mona\",\n \"familyName\": \"Octocat\"\n },\n \"emails\": [\n {\n \"value\": \"mona.octocat@okta.example.com\",\n \"type\": \"work\",\n \"primary\": true\n }\n ],\n \"groups\": [\n {\n \"value\": \"468dd3fa-a1d6-11ea-9031-15a1f0d7811d\"\n }\n ],\n \"active\": true,\n \"meta\": {\n \"resourceType\": \"User\",\n \"created\": \"2017-03-09T16:11:13-05:00\",\n \"lastModified\": \"2017-03-09T16:11:13-05:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\"\n }\n}\n
"
}
]
@@ -85137,7 +85134,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:User\"\n ],\n \"id\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"externalId\": \"00dowz5dr9oSfDFRA0h7\",\n \"userName\": \"mona.octocat@okta.example.com\",\n \"name\": {\n \"givenName\": \"Mona\",\n \"familyName\": \"Octocat\"\n },\n \"emails\": [\n {\n \"value\": \"mona.octocat@okta.example.com\",\n \"type\": \"work\",\n \"primary\": true\n }\n ],\n \"groups\": [\n {\n \"value\": \"468dd3fa-a1d6-11ea-9031-15a1f0d7811d\"\n }\n ],\n \"active\": true,\n \"meta\": {\n \"resourceType\": \"User\",\n \"created\": \"2017-03-09T16:11:13-05:00\",\n \"lastModified\": \"2017-03-09T16:11:13-05:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\"\n }\n}\n
"
}
],
@@ -85466,14 +85463,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Note: The SCIM API endpoints for enterprise accounts are currently in beta and are subject to change.
\nAllows you to change a provisioned user's individual attributes. To change a user's values, you must provide a specific Operations JSON format that contains at least one of the add, remove, or replace operations. For examples and more information on the SCIM operations format, see the SCIM specification.
\nNote: Complicated SCIM path selectors that include filters are not supported. For example, a path selector defined as \"path\": \"emails[type eq \\\"work\\\"]\" will not work.
\nWarning: If you set active:false using the replace operation (as shown in the JSON example below), it removes the user from the enterprise, deletes the external identity, and deletes the associated :scim_user_id.
\n{\n \"Operations\":[{\n \"op\":\"replace\",\n \"value\":{\n \"active\":false\n }\n }]\n}\n
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:User\"\n ],\n \"id\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"externalId\": \"00dowz5dr9oSfDFRA0h7\",\n \"userName\": \"mona.octocat@okta.example.com\",\n \"name\": {\n \"givenName\": \"Monalisa\",\n \"familyName\": \"Octocat\"\n },\n \"emails\": [\n {\n \"value\": \"mona.octocat@okta.example.com\",\n \"type\": \"work\",\n \"primary\": true\n },\n {\n \"value\": \"monalisa@octocat.github.com\",\n \"type\": \"home\"\n }\n ],\n \"groups\": [\n {\n \"value\": \"468dd3fa-a1d6-11ea-9031-15a1f0d7811d\"\n }\n ],\n \"active\": true,\n \"meta\": {\n \"resourceType\": \"User\",\n \"created\": \"2017-03-09T16:11:13-05:00\",\n \"lastModified\": \"2017-03-09T16:11:13-05:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\"\n }\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "array of strings",
@@ -85499,6 +85488,14 @@
"rawDescription": "Array of [SCIM operations](https://tools.ietf.org/html/rfc7644#section-3.5.2).",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:User\"\n ],\n \"id\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"externalId\": \"00dowz5dr9oSfDFRA0h7\",\n \"userName\": \"mona.octocat@okta.example.com\",\n \"name\": {\n \"givenName\": \"Monalisa\",\n \"familyName\": \"Octocat\"\n },\n \"emails\": [\n {\n \"value\": \"mona.octocat@okta.example.com\",\n \"type\": \"work\",\n \"primary\": true\n },\n {\n \"value\": \"monalisa@octocat.github.com\",\n \"type\": \"home\"\n }\n ],\n \"groups\": [\n {\n \"value\": \"468dd3fa-a1d6-11ea-9031-15a1f0d7811d\"\n }\n ],\n \"active\": true,\n \"meta\": {\n \"resourceType\": \"User\",\n \"created\": \"2017-03-09T16:11:13-05:00\",\n \"lastModified\": \"2017-03-09T16:11:13-05:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\"\n }\n}\n
"
+ }
]
},
{
@@ -85561,15 +85558,15 @@
"subcategory": "scim",
"subcategoryLabel": "Scim",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: The SCIM API endpoints for enterprise accounts are currently in beta and are subject to change.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: The SCIM API endpoints for enterprise accounts are currently in beta and are subject to change.
"
+ ]
},
{
"verb": "get",
@@ -85648,35 +85645,35 @@
"category": "scim",
"categoryLabel": "SCIM",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Retrieves a paginated list of all provisioned organization members, including pending invitations. If you provide the filter parameter, the resources for all matching provisions members are returned.
\nWhen a user with a SAML-provisioned external identity leaves (or is removed from) an organization, the account's metadata is immediately removed. However, the returned list of user accounts might not always match the organization or enterprise member list you see on GitHub. This can happen in certain cases where an external identity associated with an organization will not match an organization member:
\n\n- When a user with a SCIM-provisioned external identity is removed from an organization, the account's metadata is preserved to allow the user to re-join the organization in the future.
\n- When inviting a user to join an organization, you can expect to see their external identity in the results before they accept the invitation, or if the invitation is cancelled (or never accepted).
\n- When a user is invited over SCIM, an external identity is created that matches with the invitee's email address. However, this identity is only linked to a user account when the user accepts the invitation by going through SAML SSO.
\n
\nThe returned list of external identities can include an entry for a null user. These are unlinked SAML identities that are created when a user goes through the following Single Sign-On (SSO) process but does not sign in to their GitHub account after completing SSO:
\n\n- \n
The user is granted access by the IdP and is not a member of the GitHub organization.
\n \n- \n
The user attempts to access the GitHub organization and initiates the SAML SSO process, and is not currently signed in to their GitHub account.
\n \n- \n
After successfully authenticating with the SAML SSO IdP, the null external identity entry is created and the user is prompted to sign in to their GitHub account:
\n\n- If the user signs in, their GitHub account is linked to this entry.
\n- If the user does not sign in (or does not create a new account when prompted), they are not added to the GitHub organization, and the external identity
null entry remains in place. \n
\n \n
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Retrieves a paginated list of all provisioned organization members, including pending invitations. If you provide the filter parameter, the resources for all matching provisions members are returned.
\nWhen a user with a SAML-provisioned external identity leaves (or is removed from) an organization, the account's metadata is immediately removed. However, the returned list of user accounts might not always match the organization or enterprise member list you see on GitHub. This can happen in certain cases where an external identity associated with an organization will not match an organization member:
\n\n- When a user with a SCIM-provisioned external identity is removed from an organization, the account's metadata is preserved to allow the user to re-join the organization in the future.
\n- When inviting a user to join an organization, you can expect to see their external identity in the results before they accept the invitation, or if the invitation is cancelled (or never accepted).
\n- When a user is invited over SCIM, an external identity is created that matches with the invitee's email address. However, this identity is only linked to a user account when the user accepts the invitation by going through SAML SSO.
\n
\nThe returned list of external identities can include an entry for a null user. These are unlinked SAML identities that are created when a user goes through the following Single Sign-On (SSO) process but does not sign in to their GitHub account after completing SSO:
\n\n- \n
The user is granted access by the IdP and is not a member of the GitHub organization.
\n \n- \n
The user attempts to access the GitHub organization and initiates the SAML SSO process, and is not currently signed in to their GitHub account.
\n \n- \n
After successfully authenticating with the SAML SSO IdP, the null external identity entry is created and the user is prompted to sign in to their GitHub account:
\n\n- If the user signs in, their GitHub account is linked to this entry.
\n- If the user does not sign in (or does not create a new account when prompted), they are not added to the GitHub organization, and the external identity
null entry remains in place. \n
\n \n
"
+ ]
},
{
"verb": "post",
@@ -85959,44 +85956,44 @@
"categoryLabel": "SCIM",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Provision organization membership for a user, and send an activation email to the email address.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
],
- "descriptionHTML": "Provision organization membership for a user, and send an activation email to the email address.
",
"bodyParameters": [
{
"description": "Required. Configured by the admin. Could be an email, login, or username
",
@@ -86274,29 +86271,29 @@
"categoryLabel": "SCIM",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -86589,29 +86586,29 @@
"categoryLabel": "SCIM",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces an existing provisioned user's information. You must provide all the information required for the user as if you were provisioning them for the first time. Any existing user information that you don't provide will be removed. If you want to only update a specific attribute, use the Update an attribute for a SCIM user endpoint instead.
\nYou must at least provide the required values for the user: userName, name, and emails.
\nWarning: Setting active: false removes the user from the organization, deletes the external identity, and deletes the associated {scim_user_id}.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
],
- "descriptionHTML": "Replaces an existing provisioned user's information. You must provide all the information required for the user as if you were provisioning them for the first time. Any existing user information that you don't provide will be removed. If you want to only update a specific attribute, use the Update an attribute for a SCIM user endpoint instead.
\nYou must at least provide the required values for the user: userName, name, and emails.
\nWarning: Setting active: false removes the user from the organization, deletes the external identity, and deletes the associated {scim_user_id}.
",
"bodyParameters": [
{
"type": "array of strings",
@@ -87097,32 +87094,32 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "429",
"httpStatusMessage": "Too Many Requests",
- "description": "Response"
+ "description": "Response
"
}
],
"descriptionHTML": "Allows you to change a provisioned user's individual attributes. To change a user's values, you must provide a specific Operations JSON format that contains at least one of the add, remove, or replace operations. For examples and more information on the SCIM operations format, see the SCIM specification.
\nNote: Complicated SCIM path selectors that include filters are not supported. For example, a path selector defined as \"path\": \"emails[type eq \\\"work\\\"]\" will not work.
\nWarning: If you set active:false using the replace operation (as shown in the JSON example below), it removes the user from the organization, deletes the external identity, and deletes the associated :scim_user_id.
\n{\n \"Operations\":[{\n \"op\":\"replace\",\n \"value\":{\n \"active\":false\n }\n }]\n}\n
",
@@ -87376,29 +87373,29 @@
"categoryLabel": "SCIM",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -87502,28 +87499,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 7,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"name\": \"classes.js\",\n \"path\": \"src/attributes/classes.js\",\n \"sha\": \"d7212f9dee2dcc18f084d7df8f417b80846ded5a\",\n \"url\": \"https://api.github.com/repositories/167174/contents/src/attributes/classes.js?ref=825ac3773694e0cd23ee74895fd5aeb535b27da4\",\n \"git_url\": \"https://api.github.com/repositories/167174/git/blobs/d7212f9dee2dcc18f084d7df8f417b80846ded5a\",\n \"html_url\": \"https://github.com/jquery/jquery/blob/825ac3773694e0cd23ee74895fd5aeb535b27da4/src/attributes/classes.js\",\n \"repository\": {\n \"id\": 167174,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxNjcxNzQ=\",\n \"name\": \"jquery\",\n \"full_name\": \"jquery/jquery\",\n \"owner\": {\n \"login\": \"jquery\",\n \"id\": 70142,\n \"node_id\": \"MDQ6VXNlcjcwMTQy\",\n \"avatar_url\": \"https://0.gravatar.com/avatar/6906f317a4733f4379b06c32229ef02f?d=https%3A%2F%2Fidenticons.github.com%2Ff426f04f2f9813718fb806b30e0093de.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/jquery\",\n \"html_url\": \"https://github.com/jquery\",\n \"followers_url\": \"https://api.github.com/users/jquery/followers\",\n \"following_url\": \"https://api.github.com/users/jquery/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/jquery/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/jquery/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/jquery/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/jquery/orgs\",\n \"repos_url\": \"https://api.github.com/users/jquery/repos\",\n \"events_url\": \"https://api.github.com/users/jquery/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/jquery/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/jquery/jquery\",\n \"description\": \"jQuery JavaScript Library\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/jquery/jquery\",\n \"forks_url\": \"https://api.github.com/repos/jquery/jquery/forks\",\n \"keys_url\": \"https://api.github.com/repos/jquery/jquery/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/jquery/jquery/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/jquery/jquery/teams\",\n \"hooks_url\": \"https://api.github.com/repos/jquery/jquery/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/jquery/jquery/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/jquery/jquery/events\",\n \"assignees_url\": \"https://api.github.com/repos/jquery/jquery/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/jquery/jquery/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/jquery/jquery/tags\",\n \"blobs_url\": \"https://api.github.com/repos/jquery/jquery/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/jquery/jquery/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/jquery/jquery/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/jquery/jquery/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/jquery/jquery/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/jquery/jquery/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/jquery/jquery/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/jquery/jquery/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/jquery/jquery/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/jquery/jquery/subscription\",\n \"commits_url\": \"https://api.github.com/repos/jquery/jquery/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/jquery/jquery/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/jquery/jquery/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/jquery/jquery/issues/comments/{number}\",\n \"contents_url\": \"https://api.github.com/repos/jquery/jquery/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/jquery/jquery/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/jquery/jquery/merges\",\n \"archive_url\": \"https://api.github.com/repos/jquery/jquery/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/jquery/jquery/downloads\",\n \"issues_url\": \"https://api.github.com/repos/jquery/jquery/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/jquery/jquery/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/jquery/jquery/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/jquery/jquery/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/jquery/jquery/labels{/name}\",\n \"deployments_url\": \"http://api.github.com/repos/octocat/Hello-World/deployments\",\n \"releases_url\": \"http://api.github.com/repos/octocat/Hello-World/releases{/id}\"\n },\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -87630,13 +87627,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"sha\": \"bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"html_url\": \"https://github.com/octocat/Spoon-Knife/commit/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"author\": {\n \"date\": \"2014-02-04T14:38:36-08:00\",\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"date\": \"2014-02-12T15:18:55-08:00\",\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"message\": \"Create styles.css and updated README\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/trees/a639e96f9038797fba6e0469f94a4b0cc459fa68\",\n \"sha\": \"a639e96f9038797fba6e0469f94a4b0cc459fa68\"\n },\n \"comment_count\": 8\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 583231,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/583231?v=3\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {},\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/a30c19e3f13765a3b48829788bc1cb8b4e95cee4\",\n \"html_url\": \"https://github.com/octocat/Spoon-Knife/commit/a30c19e3f13765a3b48829788bc1cb8b4e95cee4\",\n \"sha\": \"a30c19e3f13765a3b48829788bc1cb8b4e95cee4\"\n }\n ],\n \"repository\": {\n \"id\": 1300192,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMzAwMTky\",\n \"name\": \"Spoon-Knife\",\n \"full_name\": \"octocat/Spoon-Knife\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 583231,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/583231?v=3\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Spoon-Knife\",\n \"description\": \"This repo is for demonstration purposes only.\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/forks\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/events\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/merges\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/deployments\"\n },\n \"score\": 1,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -87752,28 +87749,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 280,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132\",\n \"repository_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit\",\n \"labels_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/comments\",\n \"events_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/events\",\n \"html_url\": \"https://github.com/batterseapower/pinyin-toolkit/issues/132\",\n \"id\": 35802,\n \"node_id\": \"MDU6SXNzdWUzNTgwMg==\",\n \"number\": 132,\n \"title\": \"Line Number Indexes Beyond 20 Not Displayed\",\n \"user\": {\n \"login\": \"Nick3C\",\n \"id\": 90254,\n \"node_id\": \"MDQ6VXNlcjkwMjU0\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/934442aadfe3b2f4630510de416c5718?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Nick3C\",\n \"html_url\": \"https://github.com/Nick3C\",\n \"followers_url\": \"https://api.github.com/users/Nick3C/followers\",\n \"following_url\": \"https://api.github.com/users/Nick3C/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Nick3C/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Nick3C/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Nick3C/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Nick3C/orgs\",\n \"repos_url\": \"https://api.github.com/users/Nick3C/repos\",\n \"events_url\": \"https://api.github.com/users/Nick3C/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Nick3C/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"labels\": [\n {\n \"id\": 4,\n \"node_id\": \"MDU6TGFiZWw0\",\n \"url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/labels/bug\",\n \"name\": \"bug\",\n \"color\": \"ff0000\"\n }\n ],\n \"state\": \"open\",\n \"assignee\": null,\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"comments\": 15,\n \"created_at\": \"2009-07-12T20:10:41Z\",\n \"updated_at\": \"2009-07-19T09:23:43Z\",\n \"closed_at\": null,\n \"pull_request\": {\n \"url\": \"https://api/github.com/repos/octocat/Hello-World/pull/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"body\": \"...\",\n \"score\": 1,\n \"locked\": true,\n \"author_association\": \"COLLABORATOR\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -87890,28 +87887,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"id\": 418327088,\n \"node_id\": \"MDU6TGFiZWw0MTgzMjcwODg=\",\n \"url\": \"https://api.github.com/repos/octocat/linguist/labels/enhancement\",\n \"name\": \"enhancement\",\n \"color\": \"84b6eb\",\n \"default\": true,\n \"description\": \"New feature or request.\",\n \"score\": 1\n },\n {\n \"id\": 418327086,\n \"node_id\": \"MDU6TGFiZWw0MTgzMjcwODY=\",\n \"url\": \"https://api.github.com/repos/octocat/linguist/labels/bug\",\n \"name\": \"bug\",\n \"color\": \"ee0701\",\n \"default\": true,\n \"description\": \"Something isn't working.\",\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -88020,23 +88017,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 40,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"id\": 3081286,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkzMDgxMjg2\",\n \"name\": \"Tetris\",\n \"full_name\": \"dtrupenn/Tetris\",\n \"owner\": {\n \"login\": \"dtrupenn\",\n \"id\": 872147,\n \"node_id\": \"MDQ6VXNlcjg3MjE0Nw==\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/e7956084e75f239de85d3a31bc172ace?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/dtrupenn\",\n \"received_events_url\": \"https://api.github.com/users/dtrupenn/received_events\",\n \"type\": \"User\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"site_admin\": true\n },\n \"private\": false,\n \"html_url\": \"https://github.com/dtrupenn/Tetris\",\n \"description\": \"A C implementation of Tetris using Pennsim through LC4\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/dtrupenn/Tetris\",\n \"created_at\": \"2012-01-01T00:31:50Z\",\n \"updated_at\": \"2013-01-05T17:58:47Z\",\n \"pushed_at\": \"2012-01-01T00:37:02Z\",\n \"homepage\": \"https://github.com\",\n \"size\": 524,\n \"stargazers_count\": 1,\n \"watchers_count\": 1,\n \"language\": \"Assembly\",\n \"forks_count\": 0,\n \"open_issues_count\": 0,\n \"master_branch\": \"master\",\n \"default_branch\": \"master\",\n \"score\": 1,\n \"archive_url\": \"https://api.github.com/repos/dtrupenn/Tetris/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/dtrupenn/Tetris/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/dtrupenn/Tetris/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/dtrupenn/Tetris/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/dtrupenn/Tetris/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/dtrupenn/Tetris/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/dtrupenn/Tetris/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/dtrupenn/Tetris/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/dtrupenn/Tetris/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/dtrupenn/Tetris/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/dtrupenn/Tetris/downloads\",\n \"events_url\": \"https://api.github.com/repos/dtrupenn/Tetris/events\",\n \"forks_url\": \"https://api.github.com/repos/dtrupenn/Tetris/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/tags{/sha}\",\n \"git_url\": \"git:github.com/dtrupenn/Tetris.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/dtrupenn/Tetris/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/dtrupenn/Tetris/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/dtrupenn/Tetris/languages\",\n \"merges_url\": \"https://api.github.com/repos/dtrupenn/Tetris/merges\",\n \"milestones_url\": \"https://api.github.com/repos/dtrupenn/Tetris/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/dtrupenn/Tetris/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/dtrupenn/Tetris/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/dtrupenn/Tetris/releases{/id}\",\n \"ssh_url\": \"git@github.com:dtrupenn/Tetris.git\",\n \"stargazers_url\": \"https://api.github.com/repos/dtrupenn/Tetris/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/dtrupenn/Tetris/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/dtrupenn/Tetris/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/dtrupenn/Tetris/subscription\",\n \"tags_url\": \"https://api.github.com/repos/dtrupenn/Tetris/tags\",\n \"teams_url\": \"https://api.github.com/repos/dtrupenn/Tetris/teams\",\n \"trees_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/dtrupenn/Tetris.git\",\n \"mirror_url\": \"git:git.example.com/dtrupenn/Tetris\",\n \"hooks_url\": \"https://api.github.com/repos/dtrupenn/Tetris/hooks\",\n \"svn_url\": \"https://svn.github.com/dtrupenn/Tetris\",\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1,\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_pages\": true,\n \"has_wiki\": true,\n \"has_downloads\": true,\n \"archived\": true,\n \"disabled\": true,\n \"visibility\": \"private\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -88114,13 +88111,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 6,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"name\": \"ruby\",\n \"display_name\": \"Ruby\",\n \"short_description\": \"Ruby is a scripting language designed for simplified object-oriented programming.\",\n \"description\": \"Ruby was developed by Yukihiro \\\"Matz\\\" Matsumoto in 1995 with the intent of having an easily readable programming language. It is integrated with the Rails framework to create dynamic web-applications. Ruby's syntax is similar to that of Perl and Python.\",\n \"created_by\": \"Yukihiro Matsumoto\",\n \"released\": \"December 21, 1995\",\n \"created_at\": \"2016-11-28T22:03:59Z\",\n \"updated_at\": \"2017-10-30T18:16:32Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"rails\",\n \"display_name\": \"Rails\",\n \"short_description\": \"Ruby on Rails (Rails) is a web application framework written in Ruby.\",\n \"description\": \"Ruby on Rails (Rails) is a web application framework written in Ruby. It is meant to help simplify the building of complex websites.\",\n \"created_by\": \"David Heinemeier Hansson\",\n \"released\": \"December 13 2005\",\n \"created_at\": \"2016-12-09T17:03:50Z\",\n \"updated_at\": \"2017-10-30T16:20:19Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"python\",\n \"display_name\": \"Python\",\n \"short_description\": \"Python is a dynamically typed programming language.\",\n \"description\": \"Python is a dynamically typed programming language designed by Guido Van Rossum. Much like the programming language Ruby, Python was designed to be easily read by programmers. Because of its large following and many libraries, Python can be implemented and used to do anything from webpages to scientific research.\",\n \"created_by\": \"Guido van Rossum\",\n \"released\": \"February 20, 1991\",\n \"created_at\": \"2016-12-07T00:07:02Z\",\n \"updated_at\": \"2017-10-27T22:45:43Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"jekyll\",\n \"display_name\": \"Jekyll\",\n \"short_description\": \"Jekyll is a simple, blog-aware static site generator.\",\n \"description\": \"Jekyll is a blog-aware, site generator written in Ruby. It takes raw text files, runs it through a renderer and produces a publishable static website.\",\n \"created_by\": \"Tom Preston-Werner\",\n \"released\": \"2008\",\n \"created_at\": \"2016-12-16T21:53:08Z\",\n \"updated_at\": \"2017-10-27T19:00:24Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"sass\",\n \"display_name\": \"Sass\",\n \"short_description\": \"Sass is a stable extension to classic CSS.\",\n \"description\": \"Sass is a stylesheet language with a main implementation in Ruby. It is an extension of CSS that makes improvements to the old stylesheet format, such as being able to declare variables and using a cleaner nesting syntax.\",\n \"created_by\": \"Hampton Catlin, Natalie Weizenbaum, Chris Eppstein\",\n \"released\": \"November 28, 2006\",\n \"created_at\": \"2016-12-16T21:53:45Z\",\n \"updated_at\": \"2018-01-16T16:30:40Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"homebrew\",\n \"display_name\": \"Homebrew\",\n \"short_description\": \"Homebrew is a package manager for macOS.\",\n \"description\": \"Homebrew is a package manager for Apple's macOS operating system. It simplifies the installation of software and is popular in the Ruby on Rails community.\",\n \"created_by\": \"Max Howell\",\n \"released\": \"2009\",\n \"created_at\": \"2016-12-17T20:30:44Z\",\n \"updated_at\": \"2018-02-06T16:14:56Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -88228,23 +88225,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 12,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"login\": \"mojombo\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/mojombo\",\n \"html_url\": \"https://github.com/mojombo\",\n \"followers_url\": \"https://api.github.com/users/mojombo/followers\",\n \"subscriptions_url\": \"https://api.github.com/users/mojombo/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/mojombo/orgs\",\n \"repos_url\": \"https://api.github.com/users/mojombo/repos\",\n \"received_events_url\": \"https://api.github.com/users/mojombo/received_events\",\n \"type\": \"User\",\n \"score\": 1,\n \"following_url\": \"https://api.github.com/users/mojombo/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/mojombo/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/mojombo/starred{/owner}{/repo}\",\n \"events_url\": \"https://api.github.com/users/mojombo/events{/privacy}\",\n \"site_admin\": true\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -88304,13 +88301,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -88504,29 +88501,29 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n }\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -88580,25 +88577,25 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a team endpoint.
\nTo delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a team endpoint.
\nTo delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
"
+ ]
},
{
"verb": "get",
@@ -88693,7 +88690,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -88835,7 +88832,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -88907,7 +88904,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -89032,7 +89029,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 1,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Welcome to our first team post\",\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -89098,15 +89095,15 @@
"subcategory": "discussions",
"subcategoryLabel": "Discussions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion endpoint.
\nDelete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion endpoint.
\nDelete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -89210,7 +89207,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -89321,7 +89318,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -89402,7 +89399,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -89521,7 +89518,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like pineapples?\",\n \"body_html\": \"<p>Do you like pineapples?</p>\",\n \"body_version\": \"e6907b24d9c93cc0c5024a7af5888116\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -89596,15 +89593,15 @@
"subcategory": "discussion-comments",
"subcategoryLabel": "Discussion comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion comment endpoint.
\nDeletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion comment endpoint.
\nDeletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -89720,7 +89717,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -89857,7 +89854,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -89967,7 +89964,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -90095,7 +90092,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -90178,7 +90175,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"login\": \"monalisa\",\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"email\": \"octocat@github.com\",\n \"role\": \"direct_member\",\n \"created_at\": \"2016-11-30T06:46:10-08:00\",\n \"failed_at\": \"\",\n \"failed_reason\": \"\",\n \"inviter\": {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"team_count\": 2,\n \"invitation_teams_url\": \"https://api.github.com/organizations/2/invitations/1/teams\"\n }\n]\n
"
}
]
@@ -90277,13 +90274,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -90348,20 +90345,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Get team member\" endpoint (described below) is deprecated.
\nWe recommend using the Get team membership for a user endpoint instead. It allows you to get both active and pending memberships.
\nTo list members in a team, the team must be visible to the authenticated user.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if user is a member"
+ "description": "if user is a member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if user is not a member"
+ "description": "if user is not a member
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Get team member\" endpoint (described below) is deprecated.
\nWe recommend using the Get team membership for a user endpoint instead. It allows you to get both active and pending memberships.
\nTo list members in a team, the team must be visible to the authenticated user.
"
+ ]
},
{
"verb": "put",
@@ -90424,30 +90421,30 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Add team member\" endpoint (described below) is deprecated.
\nWe recommend using the Add or update team membership for a user endpoint instead. It allows you to invite new organization members to your teams.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo add someone to a team, the authenticated user must be an organization owner or a team maintainer in the team they're changing. The person being added to the team must be a member of the team's organization.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub.\"
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team synchronization is set up"
+ "description": "Not Found if team synchronization is set up
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team or you attempt to add a user to a team when they are not a member of at least one other team in the same organization"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team or you attempt to add a user to a team when they are not a member of at least one other team in the same organization
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Add team member\" endpoint (described below) is deprecated.
\nWe recommend using the Add or update team membership for a user endpoint instead. It allows you to invite new organization members to your teams.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo add someone to a team, the authenticated user must be an organization owner or a team maintainer in the team they're changing. The person being added to the team must be a member of the team's organization.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub.\"
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -90510,20 +90507,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Remove team member\" endpoint (described below) is deprecated.
\nWe recommend using the Remove team membership for a user endpoint instead. It allows you to remove both active and pending memberships.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a team member, the authenticated user must have 'admin' permissions to the team or be an owner of the org that the team is associated with. Removing a team member does not delete the user, it just removes them from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team synchronization is setup"
+ "description": "Not Found if team synchronization is setup
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Remove team member\" endpoint (described below) is deprecated.
\nWe recommend using the Remove team membership for a user endpoint instead. It allows you to remove both active and pending memberships.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a team member, the authenticated user must have 'admin' permissions to the team or be an owner of the org that the team is associated with. Removing a team member does not delete the user, it just removes them from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub.\"
"
+ ]
},
{
"verb": "get",
@@ -90598,7 +90595,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -90717,17 +90714,17 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team
"
}
]
},
@@ -90792,20 +90789,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove team membership for a user endpoint.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "if team synchronization is set up"
+ "description": "if team synchronization is set up
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove team membership for a user endpoint.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub.\"
"
+ ]
},
{
"verb": "get",
@@ -90883,13 +90880,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -90958,13 +90955,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if project is not managed by this team"
+ "description": "Not Found if project is not managed by this team
"
}
]
},
@@ -91075,23 +91072,23 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if the project is not owned by the organization",
+ "description": "Forbidden if the project is not owned by the organization
",
"payload": "{\n \"message\": \"Must have admin rights to Repository.\",\n \"documentation_url\": \"https://docs.github.com/rest/reference/teams#add-or-update-team-project-permissions\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -91154,30 +91151,30 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a project from a team endpoint.
\nRemoves an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. Note: This endpoint removes the project from the team, but does not delete it.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a project from a team endpoint.
\nRemoves an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. Note: This endpoint removes the project from the team, but does not delete it.
"
+ ]
},
{
"verb": "get",
@@ -91255,13 +91252,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -91339,18 +91336,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Alternative response with extra repository information",
+ "description": "Alternative response with extra repository information
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"maintain\": false,\n \"push\": false,\n \"triage\": false,\n \"pull\": true\n },\n \"role_name\": \"read\",\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"triage\": false,\n \"push\": false,\n \"maintain\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if repository is managed by this team"
+ "description": "Response if repository is managed by this team
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if repository is not managed by this team"
+ "description": "Not Found if repository is not managed by this team
"
}
]
},
@@ -91449,24 +91446,24 @@
"categoryLabel": "Teams",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new \"Add or update team repository permissions\" endpoint.
\nTo add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new \"Add or update team repository permissions\" endpoint.
\nTo add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -91552,15 +91549,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a repository from a team endpoint.
\nIf the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. NOTE: This does not delete the repository, it just removes it from the team.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a repository from a team endpoint.
\nIf the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. NOTE: This does not delete the repository, it just removes it from the team.
"
+ ]
},
{
"verb": "get",
@@ -91620,18 +91617,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"groups\": [\n {\n \"group_id\": \"123\",\n \"group_name\": \"Octocat admins\",\n \"group_description\": \"The people who configure your octoworld.\"\n },\n {\n \"group_id\": \"456\",\n \"group_name\": \"Octocat docs members\",\n \"group_description\": \"The people who make your octoworld come to life.\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -91862,18 +91859,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"groups\": [\n {\n \"group_id\": \"123\",\n \"group_name\": \"Octocat admins\",\n \"group_description\": \"The people who configure your octoworld.\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -92099,23 +92096,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if child teams exist",
+ "description": "if child teams exist
",
"payload": "[\n {\n \"id\": 2,\n \"node_id\": \"MDQ6VGVhbTI=\",\n \"url\": \"https://api.github.com/teams/2\",\n \"name\": \"Original Roster\",\n \"slug\": \"original-roster\",\n \"description\": \"Started it all.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/2/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/2/repos\",\n \"parent\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n },\n \"html_url\": \"https://github.com/orgs/rails/teams/core\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -92174,17 +92171,17 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -92403,33 +92400,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"name\": \"monalisa octocat\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"hireable\": false,\n \"bio\": \"There once was...\",\n \"twitter_username\": \"monatheoctocat\",\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2008-01-14T04:33:35Z\",\n \"private_gists\": 81,\n \"total_private_repos\": 100,\n \"owned_private_repos\": 100,\n \"disk_usage\": 10000,\n \"collaborators\": 8,\n \"two_factor_authentication\": true,\n \"plan\": {\n \"name\": \"Medium\",\n \"space\": 400,\n \"private_repos\": 20,\n \"collaborators\": 0\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -92478,33 +92475,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -92558,34 +92555,34 @@
"subcategoryLabel": "Blocking",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "If the user is blocked:"
+ "description": "If the user is blocked:
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "If the user is not blocked:"
+ "description": "If the user is not blocked:
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -92637,39 +92634,39 @@
"subcategoryLabel": "Blocking",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -92721,34 +92718,34 @@
"subcategoryLabel": "Blocking",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -92823,33 +92820,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"total_count\": 3,\n \"codespaces\": [\n {\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"recent_folders\": []\n },\n {\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-3f89ada1j3\",\n \"environment_id\": \"526ce4d7-46da-494f-a4f9-cfd25b818719\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-3f89ada1j3.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop\",\n \"recent_folders\": []\n },\n {\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-f8adfad99a\",\n \"environment_id\": \"6ac8cd6d-a2d0-4ae3-8cea-e135059264df\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-f8adfad99a.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop\",\n \"recent_folders\": []\n }\n ]\n}\n
"
+ "description": "Response
",
+ "payload": "{\n \"total_count\": 3,\n \"codespaces\": [\n {\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"devcontainer_path\": \".devcontainer/devcontainer.json\",\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"recent_folders\": []\n },\n {\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-3f89ada1j3\",\n \"environment_id\": \"526ce4d7-46da-494f-a4f9-cfd25b818719\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"devcontainer_path\": \".devcontainer/foobar/devcontainer.json\",\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-3f89ada1j3.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop\",\n \"recent_folders\": []\n },\n {\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-f8adfad99a\",\n \"environment_id\": \"6ac8cd6d-a2d0-4ae3-8cea-e135059264df\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"devcontainer_path\": \".devcontainer.json\",\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-f8adfad99a.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop\",\n \"recent_folders\": []\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -93138,29 +93135,29 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when the codespace was successfully created",
- "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
+ "description": "Response when the codespace was successfully created
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"devcontainer_path\": \".devcontainer/devcontainer.json\",\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response when the codespace creation partially failed but is being retried in the background",
- "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
+ "description": "Response when the codespace creation partially failed but is being retried in the background
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"devcontainer_path\": \".devcontainer/devcontainer.json\",\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
],
"bodyParameters": [
@@ -93345,7 +93342,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"organization\": null,\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
}
]
@@ -93395,7 +93392,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -93456,7 +93453,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"CODESPACE_GH_SECRET\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"selected\",\n \"selected_repositories_url\": \"https://api.github.com/user/codespaces/secrets/CODESPACE_GH_SECRET/repositories\"\n}\n
"
}
]
@@ -93490,7 +93487,7 @@
}
],
"summary": "Create or update a secret for the authenticated user",
- "description": "Creates or updates a secret for a user's codespace with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access token with the `user` scope to use this endpoint. User must also have Codespaces access to use this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates a secret for a user's codespace with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access token with the `user` scope to use this endpoint. User must also have Codespaces access to use this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"codespaces"
],
@@ -93571,25 +93568,25 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response after successfully creaing a secret"
+ "description": "Response after successfully creaing a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response after successfully updating a secret"
+ "description": "Response after successfully updating a secret
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Creates or updates a secret for a user's codespace with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access token with the user scope to use this endpoint. User must also have Codespaces access to use this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates a secret for a user's codespace with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access token with the user scope to use this endpoint. User must also have Codespaces access to use this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -93674,15 +93671,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret from a user's codespaces using the secret name. Deleting the secret will remove access from all codespaces that were allowed to access the secret. You must authenticate using an access token with the user scope to use this endpoint. User must have Codespaces access to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret from a user's codespaces using the secret name. Deleting the secret will remove access from all codespaces that were allowed to access the secret. You must authenticate using an access token with the user scope to use this endpoint. User must have Codespaces access to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -93740,28 +93737,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"organization\": null,\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -93849,34 +93846,34 @@
"subcategoryLabel": "Secrets",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Select the repositories that will use a user's codespace secret.\nYou must authenticate using an access token with the user or read:user scope to use this endpoint. User must have Codespaces access to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "No Content when repositories were added to the selected list"
+ "description": "No Content when repositories were added to the selected list
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
],
- "descriptionHTML": "Select the repositories that will use a user's codespace secret.\nYou must authenticate using an access token with the user or read:user scope to use this endpoint. User must have Codespaces access to use this endpoint.
",
"bodyParameters": [
{
"type": "array of integers",
@@ -93951,35 +93948,35 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to the selected repositories for a user's codespace secret.\nYou must authenticate using an access token with the user or read:user scope to use this endpoint. User must have Codespaces access to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "No Content when repository was added to the selected list"
+ "description": "No Content when repository was added to the selected list
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to the selected repositories for a user's codespace secret.\nYou must authenticate using an access token with the user or read:user scope to use this endpoint. User must have Codespaces access to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -94040,35 +94037,35 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from the selected repositories for a user's codespace secret.\nYou must authenticate using an access token with the user or read:user scope to use this endpoint. User must have Codespaces access to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "No Content when repository was removed from the selected list"
+ "description": "No Content when repository was removed from the selected list
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from the selected repositories for a user's codespace secret.\nYou must authenticate using an access token with the user or read:user scope to use this endpoint. User must have Codespaces access to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -94124,33 +94121,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"devcontainer_path\": \".devcontainer/devcontainer.json\",\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -94243,23 +94240,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"devcontainer_path\": \".devcontainer/devcontainer.json\",\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -94311,40 +94308,40 @@
"category": "codespaces",
"categoryLabel": "Codespaces",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a user's codespace.
\nYou must authenticate using an access token with the codespace scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a user's codespace.
\nYou must authenticate using an access token with the codespace scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -94402,33 +94399,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"machines\": [\n {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n {\n \"name\": \"premiumLinux\",\n \"display_name\": \"8 cores, 16 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 17179869184,\n \"cpus\": 8\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -94486,48 +94483,48 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"devcontainer_path\": \".devcontainer/devcontainer.json\",\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "402",
"httpStatusMessage": "Payment Required",
- "description": "Payment required"
+ "description": "Payment required
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -94585,28 +94582,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"billable_owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"machine\": {\n \"name\": \"standardLinux\",\n \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n \"operating_system\": \"linux\",\n \"storage_in_bytes\": 68719476736,\n \"memory_in_bytes\": 8589934592,\n \"cpus\": 4\n },\n \"prebuild\": false,\n \"devcontainer_path\": \".devcontainer/devcontainer.json\",\n \"created_at\": \"2021-10-14T00:53:30-06:00\",\n \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n \"state\": \"Available\",\n \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n \"git_status\": {\n \"ahead\": 0,\n \"behind\": 0,\n \"has_unpushed_changes\": false,\n \"has_uncommitted_changes\": false,\n \"ref\": \"main\"\n },\n \"location\": \"WestUs2\",\n \"idle_timeout_minutes\": 60,\n \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"recent_folders\": []\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -94698,33 +94695,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"email\": \"octocat@github.com\",\n \"primary\": true,\n \"verified\": true,\n \"visibility\": \"private\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -94794,28 +94791,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"email\": \"octocat@github.com\",\n \"verified\": true,\n \"primary\": true,\n \"visibility\": \"public\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -94932,33 +94929,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"email\": \"octocat@octocat.org\",\n \"primary\": false,\n \"verified\": false,\n \"visibility\": \"public\"\n },\n {\n \"email\": \"octocat@github.com\",\n \"primary\": false,\n \"verified\": false,\n \"visibility\": null\n },\n {\n \"email\": \"mona@github.com\",\n \"primary\": false,\n \"verified\": false,\n \"visibility\": null\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -95052,39 +95049,39 @@
"subcategoryLabel": "Emails",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "This endpoint is accessible with the user scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "This endpoint is accessible with the user scope.
",
"bodyParameters": [
{
"description": "Required. Email addresses associated with the GitHub user account.
",
@@ -95168,23 +95165,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -95254,23 +95251,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -95324,34 +95321,34 @@
"subcategoryLabel": "Followers",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if the person is followed by the authenticated user"
+ "description": "if the person is followed by the authenticated user
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if the person is not followed by the authenticated user"
+ "description": "if the person is not followed by the authenticated user
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -95402,35 +95399,35 @@
"subcategory": "followers",
"subcategoryLabel": "Followers",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nFollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nFollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
"
+ ]
},
{
"verb": "delete",
@@ -95481,35 +95478,35 @@
"subcategory": "followers",
"subcategoryLabel": "Followers",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Unfollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Unfollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
"
+ ]
},
{
"verb": "get",
@@ -95577,28 +95574,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"string\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -95682,33 +95679,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"\\\"-----BEGIN PGP PUBLIC KEY BLOCK-----\\\\nVersion: GnuPG v2\\\\n\\\\nmQENBFayYZ0BCAC4hScoJXXpyR+MXGcrBxElqw3FzCVvkViuyeko+Jp76QJhg8kr\\\\nucRTxbnOoHfda/FmilEa/wxf9ch5/PSrrL26FxEoPHhJolp8fnIDLQeITn94NYdB\\\\nZtnnEKslpPrG97qSUWIchvyqCPtvOb8+8fWvGx9K/ZWcEEdh1X8+WFR2jMENMeoX\\\\nwxHWQoPnS7LpX/85/M7VUcJxvDVfv+eHsnQupmE5bGarKNih0oMe3LbdN3qA5PTz\\\\nSCm6Iudar1VsQ+xTz08ymL7t4pnEtLguQ7EyatFHCjxNblv5RzxoL0tDgN3HqoDz\\\\nc7TEA+q4RtDQl9amcvQ95emnXmZ974u7UkYdABEBAAG0HlNvbWUgVXNlciA8c29t\\\\nZXVzZXJAZ21haWwuY29tPokBOAQTAQIAIgUCVrJhnQIbAwYLCQgHAwIGFQgCCQoL\\\\nBBYCAwECHgECF4AACgkQMmLv8lug0nAViQgArWjI55+7p48URr2z9Jvak+yrBTx1\\\\nzkufltQAnHTJkq+Kl9dySSmTnOop8o3rE4++IOpYV5Y36PkKf9EZMk4n1RQiDPKE\\\\nAFtRVTkRaoWzOir9KQXJPfhKrl01j/QzY+utfiMvUoBJZ9ybq8Pa885SljW9lbaX\\\\nIYw+hl8ZdJ2KStvGrEyfQvRyq3aN5c9TV//4BdGnwx7Qabq/U+G18lizG6f/yq15\\\\ned7t0KELaCfeKPvytp4VE9/z/Ksah/h3+Qilx07/oG2Ae5kC1bEC9coD/ogPUhbv\\\\nb2bsBIoY9E9YwsLoif2lU+o1t76zLgUktuNscRRUKobW028H1zuFS/XQhrkBDQRW\\\\nsmGdAQgApnyyv3i144OLYy0O4UKQxd3e10Y3WpDwfnGIBefAI1m7RxnUxBag/DsU\\\\n7gi9qLEC4VHSfq4eiNfr1LJOyCL2edTgCWFgBhVjbXjZe6YAOrAnhxwCErnN0Y7N\\\\n6s8wVh9fObSOyf8ZE6G7JeKpcq9Q6gd/KxagfD48a1v+fyRHpyQc6J9pUEmtrDJ7\\\\nBjmsd2VWzLBvNWdHyxDNtZweIaqIO9VUYYpr1mtTliNBOZLUelmgrt7HBRcJpWMA\\\\nS8muVVbuP5MK0trLBq/JB8qUH3zRzB/PhMgzmkIfjEK1VYDWm4E8DYyTWEJcHqkb\\\\neqFsNjrIlwPaA122BWC6gUOPwwH+oQARAQABiQEfBBgBAgAJBQJWsmGdAhsMAAoJ\\\\nEDJi7/JboNJwAyAIALd4xcdmGbZD98gScJzqwzkOMcO8zFHqHNvJ42xIFvGny7c0\\\\n1Rx7iyrdypOby5AxE+viQcjG4rpLZW/xKYBNGrCfDyQO7511I0v8x20EICMlMfD/\\\\nNrWQCzesEPcUlKTP07d+sFyP8AyseOidbzY/92CpskTgdSBjY/ntLSaoknl/fjJE\\\\nQM8OkPqU7IraO1Jzzdnm20d5PZL9+PIwIWdSTedU/vBMTJyNcoqvSfKf1wNC66XP\\\\nhqfYgXJE564AdWZKA3C0IyCqiv+LHwxLnUHio1a4/r91C8KPzxs6tGxRDjXLd7ms\\\\nuYFGWymiUGOE/giHlcxdYcHzwLnPDliMQOLiTkK5AQ0EVuxMygEIAOD+bW1cDTmE\\\\nBxh5JECoqeHuwgl6DlLhnubWPkQ4ZeRzBRAsFcEJQlwlJjrzFDicL+lnm6Qq4tt0\\\\n560TwHdf15/AKTZIZu7H25axvGNzgeaUkJEJdYAq9zTKWwX7wKyzBszi485nQg97\\\\nMfAqwhMpDW0Qqf8+7Ug+WEmfBSGv9uL3aQC6WEeIsHfri0n0n8v4XgwhfShXguxO\\\\nCsOztEsuW7WWKW9P4TngKKv4lCHdPlV6FwxeMzODBJvc2fkHVHnqc0PqszJ5xcF8\\\\n6gZCpMM027SbpeYWCAD5zwJyYP9ntfO1p2HjnQ1dZaP9FeNcO7uIV1Lnd1eGCu6I\\\\nsrVp5k1f3isAEQEAAYkCPgQYAQIACQUCVuxMygIbAgEpCRAyYu/yW6DScMBdIAQZ\\\\nAQIABgUCVuxMygAKCRCKohN4dhq2b4tcCACHxmOHVXNpu47OvUGYQydLgMACUlXN\\\\nlj+HfE0VReqShxdDmpasAY9IRpuMB2RsGK8GbNP+4SlOlAiPf5SMhS7nZNkNDgQQ\\\\naZ3HFpgrFmFwmE10BKT4iQtoxELLM57z0qGOAfTsEjWFQa4sF+6IHAQR/ptkdkkI\\\\nBUEXiMnAwVwBysLIJiLO8qdjB6qp52QkT074JVrwywT/P+DkMfC2k4r/AfEbf6eF\\\\ndmPDuPk6KD87+hJZsSa5MaMUBQVvRO/mgEkhJRITVu58eWGaBOcQJ8gqurhCqM5P\\\\nDfUA4TJ7wiqM6sS764vV1rOioTTXkszzhClQqET7hPVnVQjenYgv0EZHNyQH/1f1\\\\n/CYqvV1vFjM9vJjMbxXsATCkZe6wvBVKD8vLsJAr8N+onKQz+4OPc3kmKq7aESu3\\\\nCi/iuie5KKVwnuNhr9AzT61vEkKxwHcVFEvHB77F6ZAAInhRvjzmQbD2dlPLLQCC\\\\nqDj71ODSSAPTEmUy6969bgD9PfWei7kNkBIx7s3eBv8yzytSc2EcuUgopqFazquw\\\\nFs1+tqGHjBvQfTo6bqbJjp/9Ci2pvde3ElV2rAgUlb3lqXyXjRDqrXosh5GcRPQj\\\\nK8Nhj1BNhnrCVskE4BP0LYbOHuzgm86uXwGCFsY+w2VOsSm16Jx5GHyG5S5WU3+D\\\\nIts/HFYRLiFgDLmTlxo=\\\\n=+OzK\\\\n-----END PGP PUBLIC KEY BLOCK-----\\\"\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -95768,28 +95765,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"\\\"-----BEGIN PGP PUBLIC KEY BLOCK-----\\\\nVersion: GnuPG v2\\\\n\\\\nmQENBFayYZ0BCAC4hScoJXXpyR+MXGcrBxElqw3FzCVvkViuyeko+Jp76QJhg8kr\\\\nucRTxbnOoHfda/FmilEa/wxf9ch5/PSrrL26FxEoPHhJolp8fnIDLQeITn94NYdB\\\\nZtnnEKslpPrG97qSUWIchvyqCPtvOb8+8fWvGx9K/ZWcEEdh1X8+WFR2jMENMeoX\\\\nwxHWQoPnS7LpX/85/M7VUcJxvDVfv+eHsnQupmE5bGarKNih0oMe3LbdN3qA5PTz\\\\nSCm6Iudar1VsQ+xTz08ymL7t4pnEtLguQ7EyatFHCjxNblv5RzxoL0tDgN3HqoDz\\\\nc7TEA+q4RtDQl9amcvQ95emnXmZ974u7UkYdABEBAAG0HlNvbWUgVXNlciA8c29t\\\\nZXVzZXJAZ21haWwuY29tPokBOAQTAQIAIgUCVrJhnQIbAwYLCQgHAwIGFQgCCQoL\\\\nBBYCAwECHgECF4AACgkQMmLv8lug0nAViQgArWjI55+7p48URr2z9Jvak+yrBTx1\\\\nzkufltQAnHTJkq+Kl9dySSmTnOop8o3rE4++IOpYV5Y36PkKf9EZMk4n1RQiDPKE\\\\nAFtRVTkRaoWzOir9KQXJPfhKrl01j/QzY+utfiMvUoBJZ9ybq8Pa885SljW9lbaX\\\\nIYw+hl8ZdJ2KStvGrEyfQvRyq3aN5c9TV//4BdGnwx7Qabq/U+G18lizG6f/yq15\\\\ned7t0KELaCfeKPvytp4VE9/z/Ksah/h3+Qilx07/oG2Ae5kC1bEC9coD/ogPUhbv\\\\nb2bsBIoY9E9YwsLoif2lU+o1t76zLgUktuNscRRUKobW028H1zuFS/XQhrkBDQRW\\\\nsmGdAQgApnyyv3i144OLYy0O4UKQxd3e10Y3WpDwfnGIBefAI1m7RxnUxBag/DsU\\\\n7gi9qLEC4VHSfq4eiNfr1LJOyCL2edTgCWFgBhVjbXjZe6YAOrAnhxwCErnN0Y7N\\\\n6s8wVh9fObSOyf8ZE6G7JeKpcq9Q6gd/KxagfD48a1v+fyRHpyQc6J9pUEmtrDJ7\\\\nBjmsd2VWzLBvNWdHyxDNtZweIaqIO9VUYYpr1mtTliNBOZLUelmgrt7HBRcJpWMA\\\\nS8muVVbuP5MK0trLBq/JB8qUH3zRzB/PhMgzmkIfjEK1VYDWm4E8DYyTWEJcHqkb\\\\neqFsNjrIlwPaA122BWC6gUOPwwH+oQARAQABiQEfBBgBAgAJBQJWsmGdAhsMAAoJ\\\\nEDJi7/JboNJwAyAIALd4xcdmGbZD98gScJzqwzkOMcO8zFHqHNvJ42xIFvGny7c0\\\\n1Rx7iyrdypOby5AxE+viQcjG4rpLZW/xKYBNGrCfDyQO7511I0v8x20EICMlMfD/\\\\nNrWQCzesEPcUlKTP07d+sFyP8AyseOidbzY/92CpskTgdSBjY/ntLSaoknl/fjJE\\\\nQM8OkPqU7IraO1Jzzdnm20d5PZL9+PIwIWdSTedU/vBMTJyNcoqvSfKf1wNC66XP\\\\nhqfYgXJE564AdWZKA3C0IyCqiv+LHwxLnUHio1a4/r91C8KPzxs6tGxRDjXLd7ms\\\\nuYFGWymiUGOE/giHlcxdYcHzwLnPDliMQOLiTkK5AQ0EVuxMygEIAOD+bW1cDTmE\\\\nBxh5JECoqeHuwgl6DlLhnubWPkQ4ZeRzBRAsFcEJQlwlJjrzFDicL+lnm6Qq4tt0\\\\n560TwHdf15/AKTZIZu7H25axvGNzgeaUkJEJdYAq9zTKWwX7wKyzBszi485nQg97\\\\nMfAqwhMpDW0Qqf8+7Ug+WEmfBSGv9uL3aQC6WEeIsHfri0n0n8v4XgwhfShXguxO\\\\nCsOztEsuW7WWKW9P4TngKKv4lCHdPlV6FwxeMzODBJvc2fkHVHnqc0PqszJ5xcF8\\\\n6gZCpMM027SbpeYWCAD5zwJyYP9ntfO1p2HjnQ1dZaP9FeNcO7uIV1Lnd1eGCu6I\\\\nsrVp5k1f3isAEQEAAYkCPgQYAQIACQUCVuxMygIbAgEpCRAyYu/yW6DScMBdIAQZ\\\\nAQIABgUCVuxMygAKCRCKohN4dhq2b4tcCACHxmOHVXNpu47OvUGYQydLgMACUlXN\\\\nlj+HfE0VReqShxdDmpasAY9IRpuMB2RsGK8GbNP+4SlOlAiPf5SMhS7nZNkNDgQQ\\\\naZ3HFpgrFmFwmE10BKT4iQtoxELLM57z0qGOAfTsEjWFQa4sF+6IHAQR/ptkdkkI\\\\nBUEXiMnAwVwBysLIJiLO8qdjB6qp52QkT074JVrwywT/P+DkMfC2k4r/AfEbf6eF\\\\ndmPDuPk6KD87+hJZsSa5MaMUBQVvRO/mgEkhJRITVu58eWGaBOcQJ8gqurhCqM5P\\\\nDfUA4TJ7wiqM6sS764vV1rOioTTXkszzhClQqET7hPVnVQjenYgv0EZHNyQH/1f1\\\\n/CYqvV1vFjM9vJjMbxXsATCkZe6wvBVKD8vLsJAr8N+onKQz+4OPc3kmKq7aESu3\\\\nCi/iuie5KKVwnuNhr9AzT61vEkKxwHcVFEvHB77F6ZAAInhRvjzmQbD2dlPLLQCC\\\\nqDj71ODSSAPTEmUy6969bgD9PfWei7kNkBIx7s3eBv8yzytSc2EcuUgopqFazquw\\\\nFs1+tqGHjBvQfTo6bqbJjp/9Ci2pvde3ElV2rAgUlb3lqXyXjRDqrXosh5GcRPQj\\\\nK8Nhj1BNhnrCVskE4BP0LYbOHuzgm86uXwGCFsY+w2VOsSm16Jx5GHyG5S5WU3+D\\\\nIts/HFYRLiFgDLmTlxo=\\\\n=+OzK\\\\n-----END PGP PUBLIC KEY BLOCK-----\\\"\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -95843,40 +95840,40 @@
"subcategory": "gpg-keys",
"subcategoryLabel": "Gpg keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a GPG key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:gpg_key scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a GPG key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:gpg_key scope.
"
+ ]
},
{
"verb": "get",
@@ -95944,28 +95941,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "You can find the permissions for the installation under the `permissions` key.",
+ "description": "You can find the permissions for the installation under the permissions key.
",
"payload": "{\n \"total_count\": 2,\n \"installations\": [\n {\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"all\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n },\n {\n \"id\": 3,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"all\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -96045,23 +96042,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The access the user has to each repository is included in the hash under the `permissions` key.",
+ "description": "The access the user has to each repository is included in the hash under the permissions key.
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -96124,30 +96121,30 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Add a single repository to an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Add a single repository to an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -96208,30 +96205,30 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Remove a single repository from an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Remove a single repository from an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -96278,13 +96275,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Default response",
+ "description": "Default response
",
"payload": "{\n \"limit\": \"collaborators_only\",\n \"origin\": \"organization\",\n \"expires_at\": \"2018-08-17T04:18:39Z\"\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when there are no restrictions"
+ "description": "Response when there are no restrictions
"
}
]
},
@@ -96416,13 +96413,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"limit\": \"collaborators_only\",\n \"origin\": \"user\",\n \"expires_at\": \"2018-08-17T04:18:39Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -96465,15 +96462,15 @@
"subcategory": "user",
"subcategoryLabel": "User",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes any interaction restrictions from your public repositories.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes any interaction restrictions from your public repositories.
"
+ ]
},
{
"verb": "get",
@@ -96626,18 +96623,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -96707,28 +96704,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n },\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234\",\n \"id\": 3,\n \"url\": \"https://api.github.com/user/keys/3\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAB\",\n \"created_at\": \"2020-07-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -96834,33 +96831,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -96920,28 +96917,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -96995,35 +96992,35 @@
"subcategory": "keys",
"subcategoryLabel": "Keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a public SSH key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:public_key scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a public SSH key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:public_key scope.
"
+ ]
},
{
"verb": "get",
@@ -97091,23 +97088,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"billing_cycle\": \"monthly\",\n \"next_billing_date\": \"2017-11-11T00:00:00Z\",\n \"unit_count\": null,\n \"on_free_trial\": true,\n \"free_trial_ends_on\": \"2017-11-11T00:00:00Z\",\n \"updated_at\": \"2017-11-02T01:12:12Z\",\n \"account\": {\n \"login\": \"github\",\n \"id\": 4,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"email\": null,\n \"organization_billing_email\": \"billing@github.com\",\n \"type\": \"Organization\"\n },\n \"plan\": {\n \"url\": \"https://api.github.com/marketplace_listing/plans/1313\",\n \"accounts_url\": \"https://api.github.com/marketplace_listing/plans/1313/accounts\",\n \"id\": 1313,\n \"number\": 3,\n \"name\": \"Pro\",\n \"description\": \"A professional-grade CI solution\",\n \"monthly_price_in_cents\": 1099,\n \"yearly_price_in_cents\": 11870,\n \"price_model\": \"flat-rate\",\n \"has_free_trial\": true,\n \"unit_name\": null,\n \"state\": \"published\",\n \"bullets\": [\n \"Up to 25 private repositories\",\n \"11 concurrent builds\"\n ]\n }\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -97177,18 +97174,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"billing_cycle\": \"monthly\",\n \"next_billing_date\": \"2017-11-11T00:00:00Z\",\n \"unit_count\": null,\n \"on_free_trial\": true,\n \"free_trial_ends_on\": \"2017-11-11T00:00:00Z\",\n \"updated_at\": \"2017-11-02T01:12:12Z\",\n \"account\": {\n \"login\": \"github\",\n \"id\": 4,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"email\": null,\n \"organization_billing_email\": \"billing@github.com\",\n \"type\": \"Organization\"\n },\n \"plan\": {\n \"url\": \"https://api.github.com/marketplace_listing/plans/1313\",\n \"accounts_url\": \"https://api.github.com/marketplace_listing/plans/1313/accounts\",\n \"id\": 1313,\n \"number\": 3,\n \"name\": \"Pro\",\n \"description\": \"A professional-grade CI solution\",\n \"monthly_price_in_cents\": 1099,\n \"yearly_price_in_cents\": 11870,\n \"price_model\": \"flat-rate\",\n \"has_free_trial\": true,\n \"unit_name\": null,\n \"state\": \"published\",\n \"bullets\": [\n \"Up to 25 private repositories\",\n \"11 concurrent builds\"\n ]\n }\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
}
]
},
@@ -97272,28 +97269,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/orgs/octocat/memberships/defunkt\",\n \"state\": \"active\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/octocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"url\": \"https://api.github.com/orgs/invitocat/memberships/defunkt\",\n \"state\": \"pending\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/invitocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -97352,18 +97349,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/orgs/invitocat/memberships/defunkt\",\n \"state\": \"pending\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/invitocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -97466,23 +97463,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/orgs/octocat/memberships/defunkt\",\n \"state\": \"active\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/octocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -97552,23 +97549,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 79,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"state\": \"pending\",\n \"lock_repositories\": true,\n \"exclude_attachments\": false,\n \"exclude_releases\": false,\n \"exclude_owner_projects\": false,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ],\n \"url\": \"https://api.github.com/orgs/octo-org/migrations/79\",\n \"created_at\": \"2015-07-06T15:33:38-07:00\",\n \"updated_at\": \"2015-07-06T15:33:38-07:00\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -97790,28 +97787,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 79,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"state\": \"pending\",\n \"lock_repositories\": true,\n \"exclude_attachments\": false,\n \"exclude_releases\": false,\n \"exclude_owner_projects\": false,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ],\n \"url\": \"https://api.github.com/orgs/octo-org/migrations/79\",\n \"created_at\": \"2015-07-06T15:33:38-07:00\",\n \"updated_at\": \"2015-07-06T15:33:38-07:00\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -97883,28 +97880,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 79,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"state\": \"exported\",\n \"lock_repositories\": true,\n \"exclude_attachments\": false,\n \"exclude_releases\": false,\n \"exclude_owner_projects\": false,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ],\n \"url\": \"https://api.github.com/orgs/octo-org/migrations/79\",\n \"created_at\": \"2015-07-06T15:33:38-07:00\",\n \"updated_at\": \"2015-07-06T15:33:38-07:00\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -97958,30 +97955,30 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Fetches the URL to download the migration archive as a tar.gz file. Depending on the resources your repository uses, the migration archive can contain JSON files with data for these objects:
\n\n- attachments
\n- bases
\n- commit_comments
\n- issue_comments
\n- issue_events
\n- issues
\n- milestones
\n- organizations
\n- projects
\n- protected_branches
\n- pull_request_reviews
\n- pull_requests
\n- releases
\n- repositories
\n- review_comments
\n- schema
\n- users
\n
\nThe archive will also contain an attachments directory that includes all attachment files uploaded to GitHub.com and a repositories directory that contains the repository's Git data.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Fetches the URL to download the migration archive as a tar.gz file. Depending on the resources your repository uses, the migration archive can contain JSON files with data for these objects:
\n\n- attachments
\n- bases
\n- commit_comments
\n- issue_comments
\n- issue_events
\n- issues
\n- milestones
\n- organizations
\n- projects
\n- protected_branches
\n- pull_request_reviews
\n- pull_requests
\n- releases
\n- repositories
\n- review_comments
\n- schema
\n- users
\n
\nThe archive will also contain an attachments directory that includes all attachment files uploaded to GitHub.com and a repositories directory that contains the repository's Git data.
"
+ ]
},
{
"verb": "delete",
@@ -98033,35 +98030,35 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a previous migration archive. Downloadable migration archives are automatically deleted after seven days. Migration metadata, which is returned in the List user migrations and Get a user migration status endpoints, will continue to be available even after an archive is deleted.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a previous migration archive. Downloadable migration archives are automatically deleted after seven days. Migration metadata, which is returned in the List user migrations and Get a user migration status endpoints, will continue to be available even after an archive is deleted.
"
+ ]
},
{
"verb": "delete",
@@ -98123,35 +98120,35 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Unlocks a repository. You can lock repositories when you start a user migration. Once the migration is complete you can unlock each repository to begin using it again or delete the repository if you no longer need the source data. Returns a status of 404 Not Found if the repository is not locked.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Unlocks a repository. You can lock repositories when you start a user migration. Once the migration is complete you can unlock each repository to begin using it again or delete the repository if you no longer need the source data. Returns a status of 404 Not Found if the repository is not locked.
"
+ ]
},
{
"verb": "get",
@@ -98229,13 +98226,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -98303,23 +98300,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -98400,7 +98397,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 197,\n \"name\": \"hello_docker\",\n \"package_type\": \"container\",\n \"owner\": {\n \"login\": \"monalisa\",\n \"id\": 9919,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjk5MTk=\",\n \"avatar_url\": \"https://avatars.monalisausercontent.com/u/9919?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/users/github/repos\",\n \"events_url\": \"https://api.github.com/users/github/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"version_count\": 1,\n \"visibility\": \"private\",\n \"url\": \"https://api.github.com/orgs/github/packages/container/hello_docker\",\n \"created_at\": \"2020-05-19T22:19:11Z\",\n \"updated_at\": \"2020-05-19T22:19:11Z\",\n \"html_url\": \"https://github.com/orgs/github/packages/container/package/hello_docker\"\n },\n {\n \"id\": 198,\n \"name\": \"goodbye_docker\",\n \"package_type\": \"container\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 9919,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjk5MTk=\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/9919?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/users/github/repos\",\n \"events_url\": \"https://api.github.com/users/github/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"version_count\": 2,\n \"visibility\": \"private\",\n \"url\": \"https://api.github.com/user/monalisa/packages/container/goodbye_docker\",\n \"created_at\": \"2020-05-20T22:19:11Z\",\n \"updated_at\": \"2020-05-20T22:19:11Z\",\n \"html_url\": \"https://github.com/user/monalisa/packages/container/package/goodbye_docker\"\n }\n]\n
"
}
]
@@ -98477,7 +98474,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 40201,\n \"name\": \"octo-name\",\n \"package_type\": \"rubygems\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 209477,\n \"node_id\": \"MDQ6VXNlcjIwOTQ3Nw==\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/209477?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"version_count\": 3,\n \"visibility\": \"public\",\n \"url\": \"https://api.github.com/users/octocat/packages/rubygems/octo-name\",\n \"created_at\": \"2019-10-20T14:17:14Z\",\n \"updated_at\": \"2019-10-20T14:17:14Z\",\n \"repository\": {\n \"id\": 216219492,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTYyMTk0OTI=\",\n \"name\": \"octo-name-repo\",\n \"full_name\": \"octocat/octo-name-repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 209477,\n \"node_id\": \"MDQ6VXNlcjIwOTQ3Nw==\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/209477?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"html_url\": \"https://github.com/octocat/octo-name-repo\",\n \"description\": \"Project for octocats\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/octo-name-repo\",\n \"forks_url\": \"https://api.github.com/repos/octocat/octo-name-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octocat/octo-name-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/octo-name-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octocat/octo-name-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/octo-name-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/octo-name-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octocat/octo-name-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/octo-name-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/octo-name-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octocat/octo-name-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/octo-name-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/octo-name-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/octo-name-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octocat/octo-name-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/octo-name-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/octo-name-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/octo-name-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/octo-name-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/octo-name-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/octo-name-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octocat/octo-name-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/octo-name-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/octo-name-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/octo-name-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/octo-name-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/octo-name-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octocat/octo-name-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octocat/octo-name-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/octo-name-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octocat/octo-name-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/octo-name-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/octo-name-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/octo-name-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/octo-name-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/octo-name-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/octo-name-repo/deployments\"\n },\n \"html_url\": \"https://github.com/octocat/octo-name-repo/packages/40201\"\n}\n
"
}
]
@@ -98548,30 +98545,30 @@
"category": "packages",
"categoryLabel": "Packages",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a package owned by the authenticated user. You cannot delete a public package if any version of the package has more than 5,000 downloads. In this scenario, contact GitHub support for further assistance.
\nTo use this endpoint, you must authenticate using an access token with the packages:read and packages:delete scopes.\nIf package_type is not container, your token must also include the repo scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a package owned by the authenticated user. You cannot delete a public package if any version of the package has more than 5,000 downloads. In this scenario, contact GitHub support for further assistance.
\nTo use this endpoint, you must authenticate using an access token with the packages:read and packages:delete scopes.\nIf package_type is not container, your token must also include the repo scope.
"
+ ]
},
{
"verb": "post",
@@ -98649,30 +98646,30 @@
"category": "packages",
"categoryLabel": "Packages",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Restores a package owned by the authenticated user.
\nYou can restore a deleted package under the following conditions:
\n\n- The package was deleted within the last 30 days.
\n- The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
\n
\nTo use this endpoint, you must authenticate using an access token with the packages:read and packages:write scopes. If package_type is not container, your token must also include the repo scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Restores a package owned by the authenticated user.
\nYou can restore a deleted package under the following conditions:
\n\n- The package was deleted within the last 30 days.
\n- The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
\n
\nTo use this endpoint, you must authenticate using an access token with the packages:read and packages:write scopes. If package_type is not container, your token must also include the repo scope.
"
+ ]
},
{
"verb": "get",
@@ -98781,23 +98778,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 45763,\n \"name\": \"sha256:08a44bab0bddaddd8837a8b381aebc2e4b933768b981685a9e088360af0d3dd9\",\n \"url\": \"https://api.github.com/users/octocat/packages/container/hello_docker/versions/45763\",\n \"package_html_url\": \"https://github.com/users/octocat/packages/container/package/hello_docker\",\n \"created_at\": \"2020-09-11T21:56:40Z\",\n \"updated_at\": \"2021-02-05T21:32:32Z\",\n \"html_url\": \"https://github.com/users/octocat/packages/container/hello_docker/45763\",\n \"metadata\": {\n \"package_type\": \"container\",\n \"container\": {\n \"tags\": [\n \"latest\"\n ]\n }\n }\n },\n {\n \"id\": 881,\n \"name\": \"sha256:b3d3e366b55f9a54599220198b3db5da8f53592acbbb7dc7e4e9878762fc5344\",\n \"url\": \"https://api.github.com/users/octocat/packages/container/hello_docker/versions/881\",\n \"package_html_url\": \"https://github.com/users/octocat/packages/container/package/hello_docker\",\n \"created_at\": \"2020-05-21T22:22:20Z\",\n \"updated_at\": \"2021-02-05T21:32:32Z\",\n \"html_url\": \"https://github.com/users/octocat/packages/container/hello_docker/881\",\n \"metadata\": {\n \"package_type\": \"container\",\n \"container\": {\n \"tags\": []\n }\n }\n }\n]\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -98883,7 +98880,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 214,\n \"name\": \"sha256:3561f0cff06caccddb99c93bd26e712fcc56a811de0f8ea7a17bb865f30b176a\",\n \"url\": \"https://api.github.com/users/octocat/packages/container/hello_docker/versions/214\",\n \"package_html_url\": \"https://github.com/users/octocat/packages/container/package/hello_docker\",\n \"created_at\": \"2020-05-15T03:46:45Z\",\n \"updated_at\": \"2020-05-15T03:46:45Z\",\n \"html_url\": \"https://github.com/users/octocat/packages/container/hello_docker/214\",\n \"metadata\": {\n \"package_type\": \"container\",\n \"container\": {\n \"tags\": [\n \"1.13.6\"\n ]\n }\n }\n}\n
"
}
]
@@ -98964,30 +98961,30 @@
"category": "packages",
"categoryLabel": "Packages",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a specific package version for a package owned by the authenticated user. If the package is public and the package version has more than 5,000 downloads, you cannot delete the package version. In this scenario, contact GitHub support for further assistance.
\nTo use this endpoint, you must have admin permissions in the organization and authenticate using an access token with the packages:read and packages:delete scopes.\nIf package_type is not container, your token must also include the repo scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a specific package version for a package owned by the authenticated user. If the package is public and the package version has more than 5,000 downloads, you cannot delete the package version. In this scenario, contact GitHub support for further assistance.
\nTo use this endpoint, you must have admin permissions in the organization and authenticate using an access token with the packages:read and packages:delete scopes.\nIf package_type is not container, your token must also include the repo scope.
"
+ ]
},
{
"verb": "post",
@@ -99065,30 +99062,30 @@
"category": "packages",
"categoryLabel": "Packages",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Restores a package version owned by the authenticated user.
\nYou can restore a deleted package version under the following conditions:
\n\n- The package was deleted within the last 30 days.
\n- The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
\n
\nTo use this endpoint, you must authenticate using an access token with the packages:read and packages:write scopes. If package_type is not container, your token must also include the repo scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Restores a package version owned by the authenticated user.
\nYou can restore a deleted package version under the following conditions:
\n\n- The package was deleted within the last 30 days.
\n- The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
\n
\nTo use this endpoint, you must authenticate using an access token with the packages:read and packages:write scopes. If package_type is not container, your token must also include the repo scope.
"
+ ]
},
{
"verb": "post",
@@ -99192,33 +99189,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/users/octocat\",\n \"url\": \"https://api.github.com/projects/1002603\",\n \"html_url\": \"https://github.com/users/octocat/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002603/columns\",\n \"id\": 1002603,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDM=\",\n \"name\": \"My Projects\",\n \"body\": \"A board to manage my personal projects.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -99288,28 +99285,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"email\": \"octocat@github.com\",\n \"verified\": true,\n \"primary\": true,\n \"visibility\": \"public\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -99481,22 +99478,22 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -99934,38 +99931,38 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"organization\": null,\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -100035,28 +100032,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -100111,34 +100108,34 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -100191,34 +100188,34 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -100322,17 +100319,17 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -100395,34 +100392,34 @@
"subcategoryLabel": "Starring",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if this repository is starred by you"
+ "description": "Response if this repository is starred by you
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if this repository is not starred by you"
+ "description": "Not Found if this repository is not starred by you
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -100482,35 +100479,35 @@
"subcategory": "starring",
"subcategoryLabel": "Starring",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -100571,34 +100568,34 @@
"subcategoryLabel": "Starring",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -100666,23 +100663,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -100750,23 +100747,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -100834,13 +100831,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -100909,7 +100906,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -100982,15 +100979,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "If you are authenticated as the given user, you will see your private events. Otherwise, you'll only see public events.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "If you are authenticated as the given user, you will see your private events. Otherwise, you'll only see public events.
"
+ ]
},
{
"verb": "get",
@@ -101070,15 +101067,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This is the user's organization dashboard. You must be authenticated as the user to view this.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This is the user's organization dashboard. You must be authenticated as the user to view this.
"
+ ]
},
{
"verb": "get",
@@ -101150,14 +101147,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -101234,7 +101231,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -101314,7 +101311,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -101378,19 +101375,19 @@
"subcategoryLabel": "Followers",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if the user follows the target user"
+ "description": "if the user follows the target user
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if the user does not follow the target user"
+ "description": "if the user does not follow the target user
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -101476,13 +101473,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -101561,7 +101558,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"string\"\n }\n]\n
"
}
]
@@ -101645,18 +101642,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"contexts\": [\n {\n \"message\": \"Owns this repository\",\n \"octicon\": \"repo\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -101713,7 +101710,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
}
]
@@ -101793,7 +101790,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\"\n }\n]\n
"
}
]
@@ -101871,7 +101868,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
}
]
@@ -101962,18 +101959,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 197,\n \"name\": \"hello_docker\",\n \"package_type\": \"container\",\n \"owner\": {\n \"login\": \"monalisa\",\n \"id\": 9919,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjk5MTk=\",\n \"avatar_url\": \"https://avatars.monalisausercontent.com/u/9919?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/users/github/repos\",\n \"events_url\": \"https://api.github.com/users/github/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"version_count\": 1,\n \"visibility\": \"private\",\n \"url\": \"https://api.github.com/orgs/github/packages/container/hello_docker\",\n \"created_at\": \"2020-05-19T22:19:11Z\",\n \"updated_at\": \"2020-05-19T22:19:11Z\",\n \"html_url\": \"https://github.com/orgs/github/packages/container/package/hello_docker\"\n },\n {\n \"id\": 198,\n \"name\": \"goodbye_docker\",\n \"package_type\": \"container\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 9919,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjk5MTk=\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/9919?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/users/github/repos\",\n \"events_url\": \"https://api.github.com/users/github/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"version_count\": 2,\n \"visibility\": \"private\",\n \"url\": \"https://api.github.com/user/monalisa/packages/container/goodbye_docker\",\n \"created_at\": \"2020-05-20T22:19:11Z\",\n \"updated_at\": \"2020-05-20T22:19:11Z\",\n \"html_url\": \"https://github.com/user/monalisa/packages/container/package/goodbye_docker\"\n }\n]\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -102058,7 +102055,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 40201,\n \"name\": \"octo-name\",\n \"package_type\": \"rubygems\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 209477,\n \"node_id\": \"MDQ6VXNlcjIwOTQ3Nw==\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/209477?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"version_count\": 3,\n \"visibility\": \"public\",\n \"url\": \"https://api.github.com/users/octocat/packages/rubygems/octo-name\",\n \"created_at\": \"2019-10-20T14:17:14Z\",\n \"updated_at\": \"2019-10-20T14:17:14Z\",\n \"repository\": {\n \"id\": 216219492,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTYyMTk0OTI=\",\n \"name\": \"octo-name-repo\",\n \"full_name\": \"octocat/octo-name-repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 209477,\n \"node_id\": \"MDQ6VXNlcjIwOTQ3Nw==\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/209477?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"html_url\": \"https://github.com/octocat/octo-name-repo\",\n \"description\": \"Project for octocats\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/octo-name-repo\",\n \"forks_url\": \"https://api.github.com/repos/octocat/octo-name-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octocat/octo-name-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/octo-name-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octocat/octo-name-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/octo-name-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/octo-name-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octocat/octo-name-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/octo-name-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/octo-name-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octocat/octo-name-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/octo-name-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/octo-name-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/octo-name-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octocat/octo-name-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/octo-name-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/octo-name-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/octo-name-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/octo-name-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/octo-name-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/octo-name-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octocat/octo-name-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/octo-name-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/octo-name-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/octo-name-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/octo-name-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/octo-name-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octocat/octo-name-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octocat/octo-name-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/octo-name-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octocat/octo-name-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/octo-name-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/octo-name-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/octo-name-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/octo-name-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/octo-name-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/octo-name-repo/deployments\"\n },\n \"html_url\": \"https://github.com/octocat/octo-name-repo/packages/40201\"\n}\n
"
}
]
@@ -102138,30 +102135,30 @@
"category": "packages",
"categoryLabel": "Packages",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes an entire package for a user. You cannot delete a public package if any version of the package has more than 5,000 downloads. In this scenario, contact GitHub support for further assistance.
\nTo use this endpoint, you must authenticate using an access token with the packages:read and packages:delete scopes. In addition:
\n\n- If
package_type is not container, your token must also include the repo scope. \n- If
package_type is container, you must also have admin permissions to the container you want to delete. \n
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes an entire package for a user. You cannot delete a public package if any version of the package has more than 5,000 downloads. In this scenario, contact GitHub support for further assistance.
\nTo use this endpoint, you must authenticate using an access token with the packages:read and packages:delete scopes. In addition:
\n\n- If
package_type is not container, your token must also include the repo scope. \n- If
package_type is container, you must also have admin permissions to the container you want to delete. \n
"
+ ]
},
{
"verb": "post",
@@ -102248,30 +102245,30 @@
"category": "packages",
"categoryLabel": "Packages",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Restores an entire package for a user.
\nYou can restore a deleted package under the following conditions:
\n\n- The package was deleted within the last 30 days.
\n- The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
\n
\nTo use this endpoint, you must authenticate using an access token with the packages:read and packages:write scopes. In addition:
\n\n- If
package_type is not container, your token must also include the repo scope. \n- If
package_type is container, you must also have admin permissions to the container that you want to restore. \n
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Restores an entire package for a user.
\nYou can restore a deleted package under the following conditions:
\n\n- The package was deleted within the last 30 days.
\n- The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
\n
\nTo use this endpoint, you must authenticate using an access token with the packages:read and packages:write scopes. In addition:
\n\n- If
package_type is not container, your token must also include the repo scope. \n- If
package_type is container, you must also have admin permissions to the container that you want to restore. \n
"
+ ]
},
{
"verb": "get",
@@ -102354,23 +102351,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 3497268,\n \"name\": \"0.3.0\",\n \"url\": \"https://api.github.com/users/octocat/packages/rubygems/octo-name/versions/3497268\",\n \"package_html_url\": \"https://github.com/octocat/octo-name-repo/packages/40201\",\n \"license\": \"MIT\",\n \"created_at\": \"2020-08-31T15:22:11Z\",\n \"updated_at\": \"2020-08-31T15:22:12Z\",\n \"description\": \"Project for octocats\",\n \"html_url\": \"https://github.com/octocat/octo-name-repo/packages/40201?version=0.3.0\",\n \"metadata\": {\n \"package_type\": \"rubygems\"\n }\n },\n {\n \"id\": 387039,\n \"name\": \"0.2.0\",\n \"url\": \"https://api.github.com/users/octocat/packages/rubygems/octo-name/versions/387039\",\n \"package_html_url\": \"https://github.com/octocat/octo-name-repo/packages/40201\",\n \"license\": \"MIT\",\n \"created_at\": \"2019-12-01T20:49:29Z\",\n \"updated_at\": \"2019-12-01T20:49:30Z\",\n \"description\": \"Project for octocats\",\n \"html_url\": \"https://github.com/octocat/octo-name-repo/packages/40201?version=0.2.0\",\n \"metadata\": {\n \"package_type\": \"rubygems\"\n }\n },\n {\n \"id\": 169770,\n \"name\": \"0.1.0\",\n \"url\": \"https://api.github.com/users/octocat/packages/rubygems/octo-name/versions/169770\",\n \"package_html_url\": \"https://github.com/octocat/octo-name-repo/packages/40201\",\n \"license\": \"MIT\",\n \"created_at\": \"2019-10-20T14:17:14Z\",\n \"updated_at\": \"2019-10-20T14:17:15Z\",\n \"html_url\": \"https://github.com/octocat/octo-name-repo/packages/40201?version=0.1.0\",\n \"metadata\": {\n \"package_type\": \"rubygems\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -102465,7 +102462,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 387039,\n \"name\": \"0.2.0\",\n \"url\": \"https://api.github.com/users/octocat/packages/rubygems/octo-name/versions/387039\",\n \"package_html_url\": \"https://github.com/octocat/octo-name-repo/packages/40201\",\n \"license\": \"MIT\",\n \"created_at\": \"2019-12-01T20:49:29Z\",\n \"updated_at\": \"2019-12-01T20:49:30Z\",\n \"description\": \"Octo-name client for Ruby\",\n \"html_url\": \"https://github.com/octocat/octo-name-repo/packages/40201?version=0.2.0\",\n \"metadata\": {\n \"package_type\": \"rubygems\"\n }\n}\n
"
}
]
@@ -102555,30 +102552,30 @@
"category": "packages",
"categoryLabel": "Packages",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a specific package version for a user. If the package is public and the package version has more than 5,000 downloads, you cannot delete the package version. In this scenario, contact GitHub support for further assistance.
\nTo use this endpoint, you must authenticate using an access token with the packages:read and packages:delete scopes. In addition:
\n\n- If
package_type is not container, your token must also include the repo scope. \n- If
package_type is container, you must also have admin permissions to the container you want to delete. \n
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a specific package version for a user. If the package is public and the package version has more than 5,000 downloads, you cannot delete the package version. In this scenario, contact GitHub support for further assistance.
\nTo use this endpoint, you must authenticate using an access token with the packages:read and packages:delete scopes. In addition:
\n\n- If
package_type is not container, your token must also include the repo scope. \n- If
package_type is container, you must also have admin permissions to the container you want to delete. \n
"
+ ]
},
{
"verb": "post",
@@ -102665,30 +102662,30 @@
"category": "packages",
"categoryLabel": "Packages",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Restores a specific package version for a user.
\nYou can restore a deleted package under the following conditions:
\n\n- The package was deleted within the last 30 days.
\n- The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
\n
\nTo use this endpoint, you must authenticate using an access token with the packages:read and packages:write scopes. In addition:
\n\n- If
package_type is not container, your token must also include the repo scope. \n- If
package_type is container, you must also have admin permissions to the container that you want to restore. \n
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Restores a specific package version for a user.
\nYou can restore a deleted package under the following conditions:
\n\n- The package was deleted within the last 30 days.
\n- The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
\n
\nTo use this endpoint, you must authenticate using an access token with the packages:read and packages:write scopes. In addition:
\n\n- If
package_type is not container, your token must also include the repo scope. \n- If
package_type is container, you must also have admin permissions to the container that you want to restore. \n
"
+ ]
},
{
"verb": "get",
@@ -102779,13 +102776,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/users/octocat\",\n \"url\": \"https://api.github.com/projects/1002603\",\n \"html_url\": \"https://github.com/users/octocat/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002603/columns\",\n \"id\": 1002603,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDM=\",\n \"name\": \"My Projects\",\n \"body\": \"A board to manage my personal projects.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -102858,15 +102855,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "These are events that you've received by watching repos and following users. If you are authenticated as the given user, you will see private events. Otherwise, you'll only see public events.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "These are events that you've received by watching repos and following users. If you are authenticated as the given user, you will see private events. Otherwise, you'll only see public events.
"
+ ]
},
{
"verb": "get",
@@ -102938,14 +102935,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -103067,7 +103064,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -103125,7 +103122,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_minutes_used\": 305,\n \"total_paid_minutes_used\": 0,\n \"included_minutes\": 3000,\n \"minutes_used_breakdown\": {\n \"UBUNTU\": 205,\n \"MACOS\": 10,\n \"WINDOWS\": 90\n }\n}\n
"
}
]
@@ -103183,7 +103180,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_gigabytes_bandwidth_used\": 50,\n \"total_paid_gigabytes_bandwidth_used\": 40,\n \"included_gigabytes_bandwidth\": 10\n}\n
"
}
]
@@ -103241,7 +103238,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"days_left_in_billing_cycle\": 20,\n \"estimated_paid_storage_for_month\": 15,\n \"estimated_storage_for_month\": 40\n}\n
"
}
]
@@ -103431,7 +103428,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -103468,14 +103465,14 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get a random sentence from the Zen of GitHub
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get a random sentence from the Zen of GitHub
"
+ ]
}
]
\ No newline at end of file
diff --git a/lib/rest/static/decorated/ghes-3.0.json b/lib/rest/static/decorated/ghes-3.0.json
index b796b67e55..d11033cfa6 100644
--- a/lib/rest/static/decorated/ghes-3.0.json
+++ b/lib/rest/static/decorated/ghes-3.0.json
@@ -35,15 +35,15 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get Hypermedia links to resources accessible in GitHub's REST API
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get Hypermedia links to resources accessible in GitHub's REST API
"
+ ]
},
{
"verb": "get",
@@ -129,7 +129,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\",\n \"user\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n }\n]\n
"
}
]
@@ -351,7 +351,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\",\n \"user\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n}\n
"
}
],
@@ -556,7 +556,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\",\n \"user\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n}\n
"
}
]
@@ -769,7 +769,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"form\",\n \"insecure_ssl\": \"0\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n}\n
"
}
],
@@ -960,14 +960,14 @@
"subcategoryLabel": "Global webhooks",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -1036,15 +1036,15 @@
"subcategory": "global-webhooks",
"subcategoryLabel": "Global webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the webhook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the webhook.
"
+ ]
},
{
"verb": "get",
@@ -1152,7 +1152,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false,\n \"last_used\": \"2020-06-11T22:31:57Z\",\n \"user_id\": 1,\n \"repository_id\": 2\n },\n {\n \"key\": \"9Og8iYjAyymI9LvABpJerYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 3,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false,\n \"last_used\": \"2020-06-11T22:31:57Z\",\n \"user_id\": 1,\n \"repository_id\": 2\n }\n]\n
"
}
]
@@ -1207,14 +1207,14 @@
"subcategoryLabel": "Users",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "patch",
@@ -1316,7 +1316,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ldap_dn\": \"cn=Enterprise Ops,ou=teams,dc=github,dc=com\",\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n}\n
"
}
]
@@ -1376,7 +1376,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"queued\"\n}\n
"
}
]
@@ -1474,7 +1474,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\",\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"name\": \"monalisa octocat\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"hireable\": false,\n \"bio\": \"There once was...\",\n \"twitter_username\": \"monatheoctocat\",\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2008-01-14T04:33:35Z\",\n \"private_gists\": 81,\n \"total_private_repos\": 100,\n \"owned_private_repos\": 100,\n \"disk_usage\": 10000,\n \"collaborators\": 8,\n \"two_factor_authentication\": true,\n \"plan\": {\n \"name\": \"Medium\",\n \"space\": 400,\n \"private_repos\": 20,\n \"collaborators\": 0\n }\n}\n
"
}
]
@@ -1534,7 +1534,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"queued\"\n}\n
"
}
]
@@ -1661,7 +1661,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n}\n
"
}
]
@@ -1759,7 +1759,7 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"message\": \"Job queued to rename organization. It may take a few minutes to complete.\",\n \"url\": \"https://<hostname>/api/v3/organizations/1\"\n}\n
"
}
]
@@ -1867,7 +1867,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"name\": \"Default\",\n \"image_url\": \"githubenterprise://internal\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/1\",\n \"default_environment\": true,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 14,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n }\n]\n
"
}
]
@@ -1982,7 +1982,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": null,\n \"message\": null\n }\n}\n
"
}
]
@@ -2049,7 +2049,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": null,\n \"message\": null\n }\n}\n
"
}
]
@@ -2165,13 +2165,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Client Errors",
+ "description": "Client Errors
",
"payload": "{\n \"message\": \"Validation Failed\",\n \"errors\": [\n {\n \"resource\": \"PreReceiveEnvironment\",\n \"code\": \"custom\",\n \"message\": \"Cannot modify or delete the default environment\"\n }\n ]\n}\n
"
}
]
@@ -2238,12 +2238,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Client Errors",
+ "description": "Client Errors
",
"payload": "{\n \"message\": \"Validation Failed\",\n \"errors\": [\n {\n \"resource\": \"PreReceiveEnvironment\",\n \"code\": \"custom\",\n \"message\": \"Cannot modify or delete the default environment\"\n }\n ]\n}\n
"
}
]
@@ -2310,13 +2310,13 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/3/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": null,\n \"message\": null\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Client Errors",
+ "description": "Client Errors
",
"payload": "{\n \"message\": \"Validation Failed\",\n \"errors\": [\n {\n \"resource\": \"PreReceiveEnvironment\",\n \"code\": \"custom\",\n \"message\": \"Can not start a new download when a download is in progress\"\n }\n ]\n}\n
"
}
]
@@ -2383,7 +2383,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/3/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n}\n
"
}
]
@@ -2492,7 +2492,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": false\n }\n]\n
"
}
]
@@ -2633,14 +2633,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": false\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -2700,6 +2692,14 @@
"rawDescription": "Whether enforcement can be overridden at the org or repo level. default: `false`",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": false\n}\n
"
+ }
]
},
{
@@ -2765,7 +2765,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": false\n}\n
"
}
]
@@ -2905,14 +2905,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 1,\n \"name\": \"Default\",\n \"image_url\": \"githubenterprise://internal\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/1\",\n \"default_environment\": true,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": true\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -2972,6 +2964,14 @@
"rawDescription": "Whether enforcement can be overridden at the org or repo level.",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 1,\n \"name\": \"Default\",\n \"image_url\": \"githubenterprise://internal\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/1\",\n \"default_environment\": true,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": true\n}\n
"
+ }
]
},
{
@@ -3032,14 +3032,14 @@
"subcategoryLabel": "Pre receive hooks",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -3107,7 +3107,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 2,\n \"url\": \"https://enterprise.octocat.com/api/v3/authorizations/2\",\n \"app\": {\n \"name\": \"My personal access token\",\n \"url\": \"https://docs.github.com/enterprise/rest/reference/enterprise-admin#list-personal-access-tokens\",\n \"client_id\": \"00000000000000000000\"\n },\n \"token\": \"ghp_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"hashed_token\": \"23cffb2fab1b0a62747863eba88cb9327e561f2f7a0c8661c0d9b83146cb8d45\",\n \"token_last_eight\": \"Ae178B4a\",\n \"note\": \"My personal access token\",\n \"note_url\": null,\n \"created_at\": \"2019-04-24T21:49:02Z\",\n \"updated_at\": \"2019-04-24T21:49:02Z\",\n \"scopes\": [\n \"admin:business\",\n \"admin:gpg_key\",\n \"admin:org\",\n \"admin:org_hook\",\n \"admin:pre_receive_hook\",\n \"admin:public_key\",\n \"admin:repo_hook\",\n \"delete_repo\",\n \"gist\",\n \"notifications\",\n \"repo\",\n \"user\",\n \"write:discussion\"\n ],\n \"fingerprint\": null\n }\n]\n
"
}
]
@@ -3161,15 +3161,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a personal access token. Returns a 403 - Forbidden status when a personal access token is in use. For example, if you access this endpoint with the same personal access token that you are trying to delete, you will receive this error.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a personal access token. Returns a 403 - Forbidden status when a personal access token is in use. For example, if you access this endpoint with the same personal access token that you are trying to delete, you will receive this error.
"
+ ]
},
{
"verb": "post",
@@ -3273,7 +3273,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n}\n
"
}
]
@@ -3371,7 +3371,7 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"message\": \"Job queued to rename user. It may take a few minutes to complete.\",\n \"url\": \"https://api.github.com/user/1\"\n}\n
"
}
]
@@ -3425,15 +3425,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deleting a user will delete all their repositories, gists, applications, and personal settings. Suspending a user is often a better option.
\nYou can delete any user account except your own.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deleting a user will delete all their repositories, gists, applications, and personal settings. Suspending a user is often a better option.
\nYou can delete any user account except your own.
"
+ ]
},
{
"verb": "post",
@@ -3528,7 +3528,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
}
]
@@ -3583,14 +3583,14 @@
"subcategoryLabel": "Users",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -3635,7 +3635,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n}\n
"
}
]
@@ -3705,18 +3705,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDxOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"client_id\": \"Iv1.8a61f9b3a7aba766\",\n \"client_secret\": \"1726be1638095a19edd134c77bde3aa2ece1e5d8\",\n \"webhook_secret\": \"e340154128314309424b7c8e90325147d99fdafa\",\n \"pem\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIIEowIBAAKCAQEAuEPzOUE+kiEH1WLiMeBytTEF856j0hOVcSUSUkZxKvqczkWM\\n9vo1gDyC7ZXhdH9fKh32aapba3RSsp4ke+giSmYTk2mGR538ShSDxh0OgpJmjiKP\\nX0Bj4j5sFqfXuCtl9SkH4iueivv4R53ktqM+n6hk98l6hRwC39GVIblAh2lEM4L/\\n6WvYwuQXPMM5OG2Ryh2tDZ1WS5RKfgq+9ksNJ5Q9UtqtqHkO+E63N5OK9sbzpUUm\\noNaOl3udTlZD3A8iqwMPVxH4SxgATBPAc+bmjk6BMJ0qIzDcVGTrqrzUiywCTLma\\nszdk8GjzXtPDmuBgNn+o6s02qVGpyydgEuqmTQIDAQABAoIBACL6AvkjQVVLn8kJ\\ndBYznJJ4M8ECo+YEgaFwgAHODT0zRQCCgzd+Vxl4YwHmKV2Lr+y2s0drZt8GvYva\\nKOK8NYYZyi15IlwFyRXmvvykF1UBpSXluYFDH7KaVroWMgRreHcIys5LqVSIb6Bo\\ngDmK0yBLPp8qR29s2b7ScZRtLaqGJiX+j55rNzrZwxHkxFHyG9OG+u9IsBElcKCP\\nkYCVE8ZdYexfnKOZbgn2kZB9qu0T/Mdvki8yk3I2bI6xYO24oQmhnT36qnqWoCBX\\nNuCNsBQgpYZeZET8mEAUmo9d+ABmIHIvSs005agK8xRaP4+6jYgy6WwoejJRF5yd\\nNBuF7aECgYEA50nZ4FiZYV0vcJDxFYeY3kYOvVuKn8OyW+2rg7JIQTremIjv8FkE\\nZnwuF9ZRxgqLxUIfKKfzp/5l5LrycNoj2YKfHKnRejxRWXqG+ZETfxxlmlRns0QG\\nJ4+BYL0CoanDSeA4fuyn4Bv7cy/03TDhfg/Uq0Aeg+hhcPE/vx3ebPsCgYEAy/Pv\\neDLssOSdeyIxf0Brtocg6aPXIVaLdus+bXmLg77rJIFytAZmTTW8SkkSczWtucI3\\nFI1I6sei/8FdPzAl62/JDdlf7Wd9K7JIotY4TzT7Tm7QU7xpfLLYIP1bOFjN81rk\\n77oOD4LsXcosB/U6s1blPJMZ6AlO2EKs10UuR1cCgYBipzuJ2ADEaOz9RLWwi0AH\\nPza2Sj+c2epQD9ZivD7Zo/Sid3ZwvGeGF13JyR7kLEdmAkgsHUdu1rI7mAolXMaB\\n1pdrsHureeLxGbRM6za3tzMXWv1Il7FQWoPC8ZwXvMOR1VQDv4nzq7vbbA8z8c+c\\n57+8tALQHOTDOgQIzwK61QKBgERGVc0EJy4Uag+VY8J4m1ZQKBluqo7TfP6DQ7O8\\nM5MX73maB/7yAX8pVO39RjrhJlYACRZNMbK+v/ckEQYdJSSKmGCVe0JrGYDuPtic\\nI9+IGfSorf7KHPoMmMN6bPYQ7Gjh7a++tgRFTMEc8956Hnt4xGahy9NcglNtBpVN\\n6G8jAoGBAMCh028pdzJa/xeBHLLaVB2sc0Fe7993WlsPmnVE779dAz7qMscOtXJK\\nfgtriltLSSD6rTA9hUAsL/X62rY0wdXuNdijjBb/qvrx7CAV6i37NK1CjABNjsfG\\nZM372Ac6zc1EqSrid2IjET1YqyIW2KGLI1R2xbQc98UGlt48OdWu\\n-----END RSA PRIVATE KEY-----\\n\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -3765,7 +3765,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -3877,14 +3877,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for a GitHub App. For more information about configuring a webhook for your app, see \"Creating a GitHub App.\"
\nYou must use a JWT to access this endpoint.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -3934,6 +3926,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -4020,7 +4020,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The permissions the installation has are included under the `permissions` key.",
+ "description": "The permissions the installation has are included under the permissions key.
",
"payload": "[\n {\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"selected\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n]\n
"
}
]
@@ -4079,18 +4079,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"selected\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -4142,20 +4142,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Uninstalls a GitHub App on a user, organization, or business account. If you prefer to temporarily suspend an app's access to your account's resources, then we recommend the \"Suspend an app installation\" endpoint.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Uninstalls a GitHub App on a user, organization, or business account. If you prefer to temporarily suspend an app's access to your account's resources, then we recommend the \"Suspend an app installation\" endpoint.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -5083,33 +5083,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"ghs_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"expires_at\": \"2016-07-11T22:14:10Z\",\n \"permissions\": {\n \"issues\": \"write\",\n \"contents\": \"read\"\n },\n \"repository_selection\": \"selected\",\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -6023,20 +6023,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Suspends a GitHub App on a user, organization, or business account, which blocks the app from accessing the account's resources. When a GitHub App is suspended, the app's access to the GitHub Enterprise Server API or webhook events is blocked for that account.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Suspends a GitHub App on a user, organization, or business account, which blocks the app from accessing the account's resources. When a GitHub App is suspended, the app's access to the GitHub Enterprise Server API or webhook events is blocked for that account.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -6086,20 +6086,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a GitHub App installation suspension.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a GitHub App installation suspension.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -6178,28 +6178,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"url\": \"https://api.github.com/applications/grants/1\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"scopes\": [\n \"public_repo\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -6260,23 +6260,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/applications/grants/1\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"scopes\": [\n \"public_repo\"\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -6331,30 +6331,30 @@
"category": "oauth-authorizations",
"categoryLabel": "Oauth authorizations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for your user. Once deleted, the application has no access to your account and is no longer listed on the application authorizations settings screen within GitHub.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for your user. Once deleted, the application has no access to your account and is no longer listed on the application authorizations settings screen within GitHub.
"
+ ]
},
{
"verb": "delete",
@@ -6434,19 +6434,19 @@
"subcategoryLabel": "Oauth applications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "OAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid OAuth access_token as an input parameter and the grant for the token's owner will be deleted.\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the application authorizations settings screen within GitHub.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "OAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid OAuth access_token as an input parameter and the grant for the token's owner will be deleted.\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the application authorizations settings screen within GitHub.
",
"bodyParameters": [
{
"type": "string",
@@ -6521,15 +6521,15 @@
"subcategory": "oauth-applications",
"subcategoryLabel": "Oauth applications",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.
\nOAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid token as :access_token and the grant for the token's owner will be deleted.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the Applications settings page under \"Authorized OAuth Apps\" on GitHub Enterprise Server.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.
\nOAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid token as :access_token and the grant for the token's owner will be deleted.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the Applications settings page under \"Authorized OAuth Apps\" on GitHub Enterprise Server.
"
+ ]
},
{
"verb": "post",
@@ -6622,18 +6622,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -6728,13 +6728,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -6816,19 +6816,19 @@
"subcategoryLabel": "Oauth applications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "OAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "OAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
",
"bodyParameters": [
{
"type": "string",
@@ -7802,28 +7802,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"installation\": {\n \"permissions\": {\n \"metadata\": \"read\",\n \"issues\": \"write\",\n \"contents\": \"read\"\n },\n \"repository_selection\": \"selected\",\n \"single_file_name\": \".github/workflow.yml\",\n \"repositories_url\": \"https://api.github.com/user/repos\",\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"has_multiple_single_files\": false,\n \"single_file_paths\": []\n }\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -8787,13 +8787,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -8865,7 +8865,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -8932,15 +8932,15 @@
"subcategory": "oauth-applications",
"subcategoryLabel": "Oauth applications",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.
\nOAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.
\nOAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
"
+ ]
},
{
"verb": "get",
@@ -8995,23 +8995,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -9092,28 +9092,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 2,\n \"url\": \"https://enterprise.octocat.com/api/v3/authorizations/2\",\n \"app\": {\n \"name\": \"My personal access token\",\n \"url\": \"https://docs.github.com/enterprise/rest/reference/enterprise-admin#list-personal-access-tokens\",\n \"client_id\": \"00000000000000000000\"\n },\n \"token\": \"ghp_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"hashed_token\": \"23cffb2fab1b0a62747863eba88cb9327e561f2f7a0c8661c0d9b83146cb8d45\",\n \"token_last_eight\": \"Ae178B4a\",\n \"note\": \"My personal access token\",\n \"note_url\": null,\n \"created_at\": \"2019-04-24T21:49:02Z\",\n \"updated_at\": \"2019-04-24T21:49:02Z\",\n \"scopes\": [\n \"admin:business\",\n \"admin:gpg_key\",\n \"admin:org\",\n \"admin:org_hook\",\n \"admin:pre_receive_hook\",\n \"admin:public_key\",\n \"admin:repo_hook\",\n \"delete_repo\",\n \"gist\",\n \"notifications\",\n \"repo\",\n \"user\",\n \"write:discussion\"\n ],\n \"fingerprint\": null\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -9307,33 +9307,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -9521,34 +9521,34 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if returning an existing token",
+ "description": "if returning an existing token
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "**Deprecation Notice:** GitHub will discontinue the [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.0/rest/reference/oauth-authorizations), which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our [web application flow](https://docs.github.com/enterprise-server@3.0/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow). The [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.0/rest/reference/oauth-authorizations) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/changes/2020-02-14-deprecating-oauth-auth-endpoint/).",
+ "description": "Deprecation Notice: GitHub will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -9727,19 +9727,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if returning an existing token",
+ "description": "if returning an existing token
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response if returning a new token",
+ "description": "Response if returning a new token
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -9800,23 +9800,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -10029,13 +10029,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -10090,30 +10090,30 @@
"category": "oauth-authorizations",
"categoryLabel": "Oauth authorizations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
"
+ ]
},
{
"verb": "get",
@@ -10158,13 +10158,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"citizen_code_of_conduct\",\n \"name\": \"Citizen Code of Conduct\",\n \"url\": \"https://api.github.com/codes_of_conduct/citizen_code_of_conduct\",\n \"html_url\": \"http://citizencodeofconduct.org/\"\n },\n {\n \"key\": \"contributor_covenant\",\n \"name\": \"Contributor Covenant\",\n \"url\": \"https://api.github.com/codes_of_conduct/contributor_covenant\",\n \"html_url\": \"https://www.contributor-covenant.org/version/2/0/code_of_conduct/\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -10221,18 +10221,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"contributor_covenant\",\n \"name\": \"Contributor Covenant\",\n \"url\": \"https://api.github.com/codes_of_conduct/contributor_covenant\",\n \"body\": \"# Contributor Covenant Code of Conduct\\n\\n## Our Pledge\\n\\nIn the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.\\n\\n## Our Standards\\n\\nExamples of behavior that contributes to creating a positive environment include:\\n\\n* Using welcoming and inclusive language\\n* Being respectful of differing viewpoints and experiences\\n* Gracefully accepting constructive criticism\\n* Focusing on what is best for the community\\n* Showing empathy towards other community members\\n\\nExamples of unacceptable behavior by participants include:\\n\\n* The use of sexualized language or imagery and unwelcome sexual attention or advances\\n* Trolling, insulting/derogatory comments, and personal or political attacks\\n* Public or private harassment\\n* Publishing others' private information, such as a physical or electronic address, without explicit permission\\n* Other conduct which could reasonably be considered inappropriate in a professional setting\\n\\n## Our Responsibilities\\n\\nProject maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response\\n to any instances of unacceptable behavior.\\n\\nProject maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.\\n\\n## Scope\\n\\nThis Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address,\\n posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.\\n\\n## Enforcement\\n\\nInstances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [EMAIL]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.\\n\\nProject maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.\\n\\n## Attribution\\n\\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]\\n\\n[homepage]: http://contributor-covenant.org\\n[version]: http://contributor-covenant.org/version/1/4/\\n\",\n \"html_url\": \"http://contributor-covenant.org/version/1/4/\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -10273,20 +10273,20 @@
"category": "emojis",
"categoryLabel": "Emojis",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Lists all the emojis available to use on GitHub Enterprise Server.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Lists all the emojis available to use on GitHub Enterprise Server.
"
+ ]
},
{
"verb": "get",
@@ -10478,15 +10478,15 @@
"subcategory": "announcement",
"subcategoryLabel": "Announcement",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes the global announcement banner in your enterprise.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes the global announcement banner in your enterprise.
"
+ ]
},
{
"verb": "get",
@@ -10533,7 +10533,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"seats\": 1400,\n \"seats_used\": 1316,\n \"seats_available\": 84,\n \"kind\": \"standard\",\n \"days_until_expiration\": 365,\n \"expire_at\": \"2016/02/06 12:41:52 -0600\"\n}\n
"
}
]
@@ -10583,7 +10583,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"repos\": {\n \"total_repos\": 212,\n \"root_repos\": 194,\n \"fork_repos\": 18,\n \"org_repos\": 51,\n \"total_pushes\": 3082,\n \"total_wikis\": 15\n },\n \"hooks\": {\n \"total_hooks\": 27,\n \"active_hooks\": 23,\n \"inactive_hooks\": 4\n },\n \"pages\": {\n \"total_pages\": 36\n },\n \"orgs\": {\n \"total_orgs\": 33,\n \"disabled_orgs\": 0,\n \"total_teams\": 60,\n \"total_team_members\": 314\n },\n \"users\": {\n \"total_users\": 254,\n \"admin_users\": 45,\n \"suspended_users\": 21\n },\n \"pulls\": {\n \"total_pulls\": 86,\n \"merged_pulls\": 60,\n \"mergeable_pulls\": 21,\n \"unmergeable_pulls\": 3\n },\n \"issues\": {\n \"total_issues\": 179,\n \"open_issues\": 83,\n \"closed_issues\": 96\n },\n \"milestones\": {\n \"total_milestones\": 7,\n \"open_milestones\": 6,\n \"closed_milestones\": 1\n },\n \"gists\": {\n \"total_gists\": 178,\n \"private_gists\": 151,\n \"public_gists\": 25\n },\n \"comments\": {\n \"total_commit_comments\": 6,\n \"total_gist_comments\": 28,\n \"total_issue_comments\": 366,\n \"total_pull_request_comments\": 30\n }\n}\n
"
}
]
@@ -10628,14 +10628,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10677,14 +10677,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10725,14 +10725,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10774,14 +10774,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10823,14 +10823,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10872,14 +10872,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10921,14 +10921,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10970,14 +10970,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11018,14 +11018,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11067,14 +11067,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11132,7 +11132,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled_organizations\": \"all\",\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/enterprises/2/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -11235,14 +11235,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for organizations and allowed actions in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for organizations and allowed actions in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"type": "string",
@@ -11350,7 +11350,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"organizations\": [\n {\n \"login\": \"octocat\",\n \"id\": 161335,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"url\": \"https://api.github.com/orgs/octo-org\",\n \"repos_url\": \"https://api.github.com/orgs/octo-org/repos\",\n \"events_url\": \"https://api.github.com/orgs/octo-org/events\",\n \"hooks_url\": \"https://api.github.com/orgs/octo-org/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/octo-org/issues\",\n \"members_url\": \"https://api.github.com/orgs/octo-org/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/octo-org/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n ]\n}\n
"
}
]
@@ -11440,14 +11440,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of organization IDs to enable for GitHub Actions.
",
@@ -11524,15 +11524,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds an organization to the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds an organization to the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -11594,15 +11594,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization from the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization from the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -11660,7 +11660,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -11765,14 +11765,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"type": "boolean",
@@ -11873,7 +11873,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"runner_groups\": [\n {\n \"id\": 1,\n \"name\": \"Default\",\n \"visibility\": \"all\",\n \"default\": true,\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/1/runners\",\n \"allows_public_repositories\": false\n },\n {\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/2/runners\",\n \"allows_public_repositories\": true\n },\n {\n \"id\": 3,\n \"name\": \"expensive-hardware\",\n \"visibility\": \"private\",\n \"default\": false,\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/3/runners\",\n \"allows_public_repositories\": true\n }\n ]\n}\n
"
}
]
@@ -12079,7 +12079,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": false\n}\n
"
}
]
@@ -12150,7 +12150,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": false\n}\n
"
}
]
@@ -12305,7 +12305,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"Expensive hardware runners\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -12370,15 +12370,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a self-hosted runner group for an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a self-hosted runner group for an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -12466,7 +12466,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"organizations\": [\n {\n \"login\": \"octocat\",\n \"id\": 161335,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"url\": \"https://api.github.com/orgs/octo-org\",\n \"repos_url\": \"https://api.github.com/orgs/octo-org/repos\",\n \"events_url\": \"https://api.github.com/orgs/octo-org/events\",\n \"hooks_url\": \"https://api.github.com/orgs/octo-org/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/octo-org/issues\",\n \"members_url\": \"https://api.github.com/orgs/octo-org/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/octo-org/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n ]\n}\n
"
}
]
@@ -12566,14 +12566,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of organizations that have access to a self-hosted runner configured in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of organizations that have access to a self-hosted runner configured in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of organization IDs that can access the runner group.
",
@@ -12660,15 +12660,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds an organization to the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds an organization to the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -12740,15 +12740,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization from the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization from the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -12836,7 +12836,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -12936,14 +12936,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of self-hosted runners that are part of an enterprise runner group.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of self-hosted runners that are part of an enterprise runner group.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of runner IDs to add to the runner group.
",
@@ -13030,15 +13030,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise\nscope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise\nscope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -13110,15 +13110,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a self-hosted runner from a group configured in an enterprise. The runner is then returned to the default group.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a self-hosted runner from a group configured in an enterprise. The runner is then returned to the default group.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -13196,7 +13196,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -13257,7 +13257,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"os\": \"osx\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-osx-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-osx-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm-2.164.0.tar.gz\"\n },\n {\n \"os\": \"win\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-win-x64-2.164.0.zip\",\n \"filename\": \"actions-runner-win-x64-2.164.0.zip\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm64-2.164.0.tar.gz\"\n }\n]\n
"
}
]
@@ -13318,7 +13318,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"LLBF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-22T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -13379,7 +13379,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"AABF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-29T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -13450,7 +13450,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 23,\n \"name\": \"MBP\",\n \"os\": \"macos\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
}
]
@@ -13515,15 +13515,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from an enterprise. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from an enterprise. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -13585,30 +13585,30 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "We delay the public events feed by five minutes, which means the most recent event returned by the public events API actually occurred at least five minutes ago.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "We delay the public events feed by five minutes, which means the most recent event returned by the public events API actually occurred at least five minutes ago.
"
+ ]
},
{
"verb": "get",
@@ -13655,7 +13655,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"timeline_url\": \"https://github.com/timeline\",\n \"user_url\": \"https://github.com/{user}\",\n \"current_user_public_url\": \"https://github.com/octocat\",\n \"current_user_url\": \"https://github.com/octocat.private?token=abc123\",\n \"current_user_actor_url\": \"https://github.com/octocat.private.actor?token=abc123\",\n \"current_user_organization_url\": \"\",\n \"current_user_organization_urls\": [\n \"https://github.com/organizations/github/octocat.private.atom?token=abc123\"\n ],\n \"_links\": {\n \"timeline\": {\n \"href\": \"https://github.com/timeline\",\n \"type\": \"application/atom+xml\"\n },\n \"user\": {\n \"href\": \"https://github.com/{user}\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_public\": {\n \"href\": \"https://github.com/octocat\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user\": {\n \"href\": \"https://github.com/octocat.private?token=abc123\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_actor\": {\n \"href\": \"https://github.com/octocat.private.actor?token=abc123\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_organization\": {\n \"href\": \"\",\n \"type\": \"\"\n },\n \"current_user_organizations\": [\n {\n \"href\": \"https://github.com/organizations/github/octocat.private.atom?token=abc123\",\n \"type\": \"application/atom+xml\"\n }\n ]\n }\n}\n
"
}
]
@@ -13735,18 +13735,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -13865,34 +13865,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Allows you to add a new gist with one or more files.
\nNote: Don't name your files \"gistfile\" with a numerical suffix. This is the format of the automatic naming scheme that Gist uses internally.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
- },
- {
- "httpStatusCode": "304",
- "httpStatusMessage": "Not Modified",
- "description": "Not modified"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"description": "Description of the gist
",
@@ -13955,6 +13927,34 @@
"type": "boolean or string",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "304",
+ "httpStatusMessage": "Not Modified",
+ "description": "Not modified
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -14032,23 +14032,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -14127,23 +14127,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -14201,23 +14201,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden Gist"
+ "description": "Forbidden Gist
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -14352,24 +14352,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Allows you to update or delete a gist file and rename gist files. Files from the previous version of the gist that aren't explicitly changed during an edit are unchanged.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"description": "Description of the gist
",
@@ -14427,6 +14409,24 @@
"rawDescription": "Names of files to be updated",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -14478,29 +14478,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -14578,23 +14578,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -14693,23 +14693,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -14779,23 +14779,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden Gist"
+ "description": "Forbidden Gist
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -14904,13 +14904,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -14975,29 +14975,29 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -15073,23 +15073,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/57a7f021a713b1c5a6a199b54cc514735d2d462f\",\n \"version\": \"57a7f021a713b1c5a6a199b54cc514735d2d462f\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"change_status\": {\n \"deletions\": 0,\n \"additions\": 180,\n \"total\": 180\n },\n \"committed_at\": \"2010-04-14T02:15:15Z\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -15167,23 +15167,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 1,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -15241,28 +15241,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -15315,29 +15315,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if gist is starred"
+ "description": "Response if gist is starred
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if gist is not starred"
+ "description": "Not Found if gist is not starred
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -15387,30 +15387,30 @@
"category": "gists",
"categoryLabel": "Gists",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -15461,29 +15461,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -15548,23 +15548,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -15611,13 +15611,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"Actionscript\",\n \"Android\",\n \"AppceleratorTitanium\",\n \"Autotools\",\n \"Bancha\",\n \"C\",\n \"C++\"\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -15674,13 +15674,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"C\",\n \"source\": \"# Object files\\n*.o\\n\\n# Libraries\\n*.lib\\n*.a\\n\\n# Shared objects (inc. Windows DLLs)\\n*.dll\\n*.so\\n*.so.*\\n*.dylib\\n\\n# Executables\\n*.exe\\n*.out\\n*.app\\n\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -15757,23 +15757,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -15816,15 +15816,15 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Revokes the installation token you're using to authenticate as an installation and access this endpoint.
\nOnce an installation token is revoked, the token is invalidated and cannot be used. Other endpoints that require the revoked installation token must have a new installation token to work. You can create a new token using the \"Create an installation access token for an app\" endpoint.
\nYou must use an installation access token to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Revokes the installation token you're using to authenticate as an installation and access this endpoint.
\nOnce an installation token is revoked, the token is invalidated and cannot be used. Other endpoints that require the revoked installation token must have a new installation token to work. You can create a new token using the \"Create an installation access token for an app\" endpoint.
\nYou must use an installation access token to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -16024,23 +16024,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -16117,13 +16117,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"lgpl-3.0\",\n \"name\": \"GNU Lesser General Public License v3.0\",\n \"spdx_id\": \"LGPL-3.0\",\n \"url\": \"https://api.github.com/licenses/lgpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"mpl-2.0\",\n \"name\": \"Mozilla Public License 2.0\",\n \"spdx_id\": \"MPL-2.0\",\n \"url\": \"https://api.github.com/licenses/mpl-2.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"agpl-3.0\",\n \"name\": \"GNU Affero General Public License v3.0\",\n \"spdx_id\": \"AGPL-3.0\",\n \"url\": \"https://api.github.com/licenses/agpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"unlicense\",\n \"name\": \"The Unlicense\",\n \"spdx_id\": \"Unlicense\",\n \"url\": \"https://api.github.com/licenses/unlicense\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"apache-2.0\",\n \"name\": \"Apache License 2.0\",\n \"spdx_id\": \"Apache-2.0\",\n \"url\": \"https://api.github.com/licenses/apache-2.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"gpl-3.0\",\n \"name\": \"GNU General Public License v3.0\",\n \"spdx_id\": \"GPL-3.0\",\n \"url\": \"https://api.github.com/licenses/gpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -16180,23 +16180,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"http://choosealicense.com/licenses/mit/\",\n \"description\": \"A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty.\",\n \"implementation\": \"Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders.\",\n \"permissions\": [\n \"commercial-use\",\n \"modifications\",\n \"distribution\",\n \"sublicense\",\n \"private-use\"\n ],\n \"conditions\": [\n \"include-copyright\"\n ],\n \"limitations\": [\n \"no-liability\"\n ],\n \"body\": \"\\n\\nThe MIT License (MIT)\\n\\nCopyright (c) [year] [fullname]\\n\\nPermission is hereby granted, free of charge, to any person obtaining a copy\\nof this software and associated documentation files (the \\\"Software\\\"), to deal\\nin the Software without restriction, including without limitation the rights\\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\\ncopies of the Software, and to permit persons to whom the Software is\\nfurnished to do so, subject to the following conditions:\\n\\nThe above copyright notice and this permission notice shall be included in all\\ncopies or substantial portions of the Software.\\n\\nTHE SOFTWARE IS PROVIDED \\\"AS IS\\\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\\nSOFTWARE.\\n\",\n \"featured\": true\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -16291,12 +16291,12 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
],
"bodyParameters": [
@@ -16388,20 +16388,20 @@
"categoryLabel": "Markdown",
"contentType": "text/plain",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "You must send Markdown as plain text (using a Content-Type header of text/plain or text/x-markdown) to this endpoint, rather than using JSON format. In raw mode, GitHub Flavored Markdown is not supported and Markdown will be rendered in plain format like a README.md file. Markdown content must be 400 KB or less.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "You must send Markdown as plain text (using a Content-Type header of text/plain or text/x-markdown) to this endpoint, rather than using JSON format. In raw mode, GitHub Flavored Markdown is not supported and Markdown will be rendered in plain format like a README.md file. Markdown content must be 400 KB or less.
"
+ ]
},
{
"verb": "get",
@@ -16446,13 +16446,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"verifiable_password_authentication\": true,\n \"packages\": [\n \"192.30.252.0/22\"\n ],\n \"dependabot\": [\n \"54.158.161.132\"\n ],\n \"installed_version\": \"3.0.0\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -16535,34 +16535,34 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -16674,28 +16674,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -16770,34 +16770,34 @@
"subcategoryLabel": "Notifications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Marks all notifications as \"read\" removes it from the default view on GitHub Enterprise Server. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub Enterprise Server will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
],
- "descriptionHTML": "Marks all notifications as \"read\" removes it from the default view on GitHub Enterprise Server. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub Enterprise Server will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"bodyParameters": [
{
"description": "Describes the last point that notifications were checked.
",
@@ -16876,23 +16876,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -16947,24 +16947,24 @@
"subcategoryLabel": "Notifications",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -17022,23 +17022,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/notifications/threads/1/subscription\",\n \"thread_url\": \"https://api.github.com/notifications/threads/1\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -17132,23 +17132,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/notifications/threads/1/subscription\",\n \"thread_url\": \"https://api.github.com/notifications/threads/1\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -17202,30 +17202,30 @@
"subcategory": "notifications",
"subcategoryLabel": "Notifications",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Mutes all future notifications for a conversation until you comment on the thread or get an @mention. If you are watching the repository of the thread, you will still receive notifications. To ignore future notifications for a repository you are watching, use the Set a thread subscription endpoint and set ignore to true.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Mutes all future notifications for a conversation until you comment on the thread or get an @mention. If you are watching the repository of the thread, you will still receive notifications. To ignore future notifications for a repository you are watching, use the Set a thread subscription endpoint and set ignore to true.
"
+ ]
},
{
"verb": "get",
@@ -17274,15 +17274,15 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get the octocat as ASCII art
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get the octocat as ASCII art
"
+ ]
},
{
"verb": "get",
@@ -17348,13 +17348,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -17423,7 +17423,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -17866,18 +17866,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"twitter_username\": \"github\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"type\": \"Organization\",\n \"total_private_repos\": 100,\n \"owned_private_repos\": 100,\n \"private_gists\": 81,\n \"disk_usage\": 10000,\n \"collaborators\": 8,\n \"billing_email\": \"mona@github.com\",\n \"plan\": {\n \"name\": \"Medium\",\n \"space\": 400,\n \"private_repos\": 20\n },\n \"default_repository_permission\": \"read\",\n \"members_can_create_repositories\": true,\n \"two_factor_requirement_enabled\": true,\n \"members_allowed_repository_creation_type\": \"all\",\n \"members_can_create_public_repositories\": false,\n \"members_can_create_private_repositories\": false,\n \"members_can_create_internal_repositories\": false,\n \"members_can_create_pages\": true,\n \"members_can_create_public_pages\": true,\n \"members_can_create_private_pages\": true,\n \"members_can_fork_private_repositories\": false,\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -17936,7 +17936,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled_repositories\": \"all\",\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/organizations/42/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -18038,14 +18038,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for repositories and allowed actions in an organization.
\nIf the organization belongs to an enterprise that has set restrictive permissions at the enterprise level, such as allowed_actions to selected actions, then you cannot override them for the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for repositories and allowed actions in an organization.
\nIf the organization belongs to an enterprise that has set restrictive permissions at the enterprise level, such as allowed_actions to selected actions, then you cannot override them for the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"type": "string",
@@ -18152,7 +18152,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
}
]
@@ -18241,14 +18241,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"description": "Required. List of repository IDs to enable for GitHub Actions.
",
@@ -18323,15 +18323,15 @@
"subcategory": "permissions",
"subcategoryLabel": "Permissions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
"
+ ]
},
{
"verb": "delete",
@@ -18391,15 +18391,15 @@
"subcategory": "permissions",
"subcategoryLabel": "Permissions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
"
+ ]
},
{
"verb": "get",
@@ -18456,7 +18456,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -18560,14 +18560,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in an organization. To use this endpoint, the organization permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nIf the organization belongs to an enterprise that has selected actions set at the enterprise level, then you cannot override any of the enterprise's allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the organization must belong to an enterprise. If the organization does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories in the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in an organization. To use this endpoint, the organization permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nIf the organization belongs to an enterprise that has selected actions set at the enterprise level, then you cannot override any of the enterprise's allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the organization must belong to an enterprise. If the organization does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories in the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -18667,7 +18667,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"runner_groups\": [\n {\n \"id\": 1,\n \"name\": \"Default\",\n \"visibility\": \"all\",\n \"default\": true,\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/1/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n },\n {\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": true,\n \"allows_public_repositories\": true\n },\n {\n \"id\": 3,\n \"name\": \"expensive-hardware\",\n \"visibility\": \"private\",\n \"default\": false,\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/3/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n }\n ]\n}\n
"
}
]
@@ -18876,7 +18876,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner-groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -18946,7 +18946,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -19103,7 +19103,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner-groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -19167,15 +19167,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a self-hosted runner group for an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a self-hosted runner group for an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -19262,7 +19262,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"organization\": null,\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
}
]
@@ -19361,14 +19361,14 @@
"subcategoryLabel": "Self hosted runner groups",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of repositories that have access to a self-hosted runner group configured in an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of repositories that have access to a self-hosted runner group configured in an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of repository IDs that can access the runner group.
",
@@ -19453,15 +19453,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -19531,15 +19531,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -19626,7 +19626,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -19725,14 +19725,14 @@
"subcategoryLabel": "Self hosted runner groups",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of self-hosted runners that are part of an organization runner group.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of self-hosted runners that are part of an organization runner group.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of runner IDs to add to the runner group.
",
@@ -19818,15 +19818,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -19897,15 +19897,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a self-hosted runner from a group configured in an organization. The runner is then returned to the default group.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a self-hosted runner from a group configured in an organization. The runner is then returned to the default group.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -19982,7 +19982,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -20042,7 +20042,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"os\": \"osx\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-osx-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-osx-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm-2.164.0.tar.gz\"\n },\n {\n \"os\": \"win\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-win-x64-2.164.0.zip\",\n \"filename\": \"actions-runner-win-x64-2.164.0.zip\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm64-2.164.0.tar.gz\"\n }\n]\n
"
}
]
@@ -20102,7 +20102,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"LLBF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-22T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -20162,7 +20162,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"AABF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-29T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -20232,7 +20232,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 23,\n \"name\": \"MBP\",\n \"os\": \"macos\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
}
]
@@ -20296,15 +20296,15 @@
"subcategory": "self-hosted-runners",
"subcategoryLabel": "Self hosted runners",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from an organization. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from an organization. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -20381,7 +20381,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"secrets\": [\n {\n \"name\": \"GIST_ID\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"private\"\n },\n {\n \"name\": \"DEPLOY_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"all\"\n },\n {\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"selected\",\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories\"\n }\n ]\n}\n
"
}
]
@@ -20441,7 +20441,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -20511,7 +20511,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"selected\",\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories\"\n}\n
"
}
]
@@ -20554,7 +20554,7 @@
}
],
"summary": "Create or update an organization secret",
- "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -20649,15 +20649,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to\nuse this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to\nuse this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -20765,15 +20765,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in an organization using the secret name. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in an organization using the secret name. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -20860,7 +20860,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n }\n ]\n}\n
"
}
]
@@ -20957,14 +20957,14 @@
"subcategoryLabel": "Secrets",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces all repositories for an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces all repositories for an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"bodyParameters": [
{
"type": "array of integers",
@@ -21048,20 +21048,20 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "No Content when repository was added to the selected list"
+ "description": "No Content when repository was added to the selected list
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when visibility type is not set to selected"
+ "description": "Conflict when visibility type is not set to selected
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -21131,20 +21131,20 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when repository was removed from the selected list"
+ "description": "Response when repository was removed from the selected list
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when visibility type not set to selected"
+ "description": "Conflict when visibility type not set to selected
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -21216,14 +21216,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -21300,13 +21300,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -21581,18 +21581,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -21850,13 +21850,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -22094,18 +22094,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"name\": \"web\",\n \"events\": [\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -22322,19 +22322,19 @@
"subcategoryLabel": "Webhooks",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -22400,7 +22400,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -22532,14 +22532,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for an organization. To update more information about the webhook, including the active state and events, use \"Update an organization webhook .\"
\nAccess tokens must have the admin:org_hook scope, and GitHub Apps must have the organization_hooks:write permission.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -22589,6 +22581,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -22649,20 +22649,20 @@
"subcategory": "webhooks",
"subcategoryLabel": "Webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the hook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the hook.
"
+ ]
},
{
"verb": "get",
@@ -22717,7 +22717,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
}
]
@@ -22795,7 +22795,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"installations\": [\n {\n \"id\": 25381,\n \"account\": {\n \"login\": \"octo-org\",\n \"id\": 6811672,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjY4MTE2NzI=\",\n \"avatar_url\": \"https://avatars3.githubusercontent.com/u/6811672?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octo-org\",\n \"html_url\": \"https://github.com/octo-org\",\n \"followers_url\": \"https://api.github.com/users/octo-org/followers\",\n \"following_url\": \"https://api.github.com/users/octo-org/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octo-org/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octo-org/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octo-org/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octo-org/orgs\",\n \"repos_url\": \"https://api.github.com/users/octo-org/repos\",\n \"events_url\": \"https://api.github.com/users/octo-org/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octo-org/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"selected\",\n \"access_tokens_url\": \"https://api.github.com/app/installations/25381/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/octo-org/settings/installations/25381\",\n \"app_id\": 2218,\n \"target_id\": 6811672,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"deployments\": \"write\",\n \"metadata\": \"read\",\n \"pull_requests\": \"read\",\n \"statuses\": \"read\"\n },\n \"events\": [\n \"deployment\",\n \"deployment_status\"\n ],\n \"created_at\": \"2017-05-16T08:47:09.000-07:00\",\n \"updated_at\": \"2017-06-06T11:23:23.000-07:00\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n ]\n}\n
"
}
]
@@ -22971,13 +22971,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -23087,18 +23087,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response if requester is not an organization member"
+ "description": "Response if requester is not an organization member
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -23160,25 +23160,25 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Check if a user is, publicly or privately, a member of the organization.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if requester is an organization member and user is a member"
+ "description": "Response if requester is an organization member and user is a member
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response if requester is not an organization member"
+ "description": "Response if requester is not an organization member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if requester is an organization member and user is not a member"
+ "description": "Not Found if requester is an organization member and user is not a member
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Check if a user is, publicly or privately, a member of the organization.
"
+ ]
},
{
"verb": "delete",
@@ -23238,20 +23238,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removing a user from this list will remove them from all teams and they will no longer have any access to the organization's repositories.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removing a user from this list will remove them from all teams and they will no longer have any access to the organization's repositories.
"
+ ]
},
{
"verb": "get",
@@ -23323,12 +23323,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -23444,12 +23444,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -23511,25 +23511,25 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "In order to remove a user's membership with an organization, the authenticated user must be an organization owner.
\nIf the specified user is an active member of the organization, this will remove them from the organization. If the specified user has been invited to the organization, this will cancel their invitation. The specified user will receive an email notification in both cases.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "In order to remove a user's membership with an organization, the authenticated user must be an organization owner.
\nIf the specified user is an active member of the organization, this will remove them from the organization. If the specified user has been invited to the organization, this will cancel their invitation. The specified user will receive an email notification in both cases.
"
+ ]
},
{
"verb": "get",
@@ -23621,7 +23621,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -23684,30 +23684,30 @@
"subcategory": "outside-collaborators",
"subcategoryLabel": "Outside collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "When an organization member is converted to an outside collaborator, they'll only have access to the repositories that their current team membership allows. The user will no longer be a member of the organization. For more information, see \"Converting an organization member to an outside collaborator\".
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "User is getting converted asynchronously"
+ "description": "User is getting converted asynchronously
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "User was converted"
+ "description": "User was converted
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if user is the last owner of the organization or not a member of the organization"
+ "description": "Forbidden if user is the last owner of the organization or not a member of the organization
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "When an organization member is converted to an outside collaborator, they'll only have access to the repositories that their current team membership allows. The user will no longer be a member of the organization. For more information, see \"Converting an organization member to an outside collaborator\".
"
+ ]
},
{
"verb": "delete",
@@ -23773,12 +23773,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if user is a member of the organization",
+ "description": "Unprocessable Entity if user is a member of the organization
",
"payload": "{\n \"message\": \"You cannot specify an organization member to remove as an outside collaborator.\",\n \"documentation_url\": \"https://docs.github.com/enterprise-server@3.0/rest/reference/orgs#remove-outside-collaborator\"\n}\n
"
}
]
@@ -23896,7 +23896,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/admin/pre-receive-hooks/42\",\n \"allow_downstream_configuration\": true\n }\n]\n
"
}
]
@@ -23973,7 +23973,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/admin/pre-receive-hooks/42\",\n \"allow_downstream_configuration\": true\n}\n
"
}
]
@@ -24103,7 +24103,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"enabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\",\n \"allow_downstream_configuration\": false\n}\n
"
}
]
@@ -24180,7 +24180,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/admin/pre-receive-hooks/42\",\n \"allow_downstream_configuration\": true\n}\n
"
}
]
@@ -24280,13 +24280,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -24406,33 +24406,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -24511,7 +24511,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -24575,19 +24575,19 @@
"subcategoryLabel": "Members",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if user is a public member"
+ "description": "Response if user is a public member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if user is not a public member"
+ "description": "Not Found if user is not a public member
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -24647,20 +24647,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The user can publicize their own membership. (A user cannot publicize the membership for another user.)
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The user can publicize their own membership. (A user cannot publicize the membership for another user.)
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -24721,14 +24721,14 @@
"subcategoryLabel": "Members",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -24864,7 +24864,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -25295,18 +25295,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -25383,13 +25383,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -25627,18 +25627,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -25705,13 +25705,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -25909,7 +25909,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
}
]
@@ -25971,15 +25971,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "To delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "To delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}.
"
+ ]
},
{
"verb": "get",
@@ -26098,7 +26098,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -26254,7 +26254,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -26340,7 +26340,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -26479,7 +26479,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 1,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Welcome to our first team post\",\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -26552,15 +26552,15 @@
"subcategory": "discussions",
"subcategoryLabel": "Discussions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Delete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Delete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}.
"
+ ]
},
{
"verb": "get",
@@ -26678,7 +26678,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -26803,7 +26803,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -26898,7 +26898,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -27031,7 +27031,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like pineapples?\",\n \"body_html\": \"<p>Do you like pineapples?</p>\",\n \"body_version\": \"e6907b24d9c93cc0c5024a7af5888116\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -27113,15 +27113,15 @@
"subcategory": "discussion-comments",
"subcategoryLabel": "Discussion comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}.
"
+ ]
},
{
"verb": "get",
@@ -27250,7 +27250,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -27400,13 +27400,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -27501,15 +27501,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion comment. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion comment. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -27629,7 +27629,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -27770,13 +27770,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -27862,15 +27862,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -27973,7 +27973,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -28058,7 +28058,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if user has no team membership"
+ "description": "if user has no team membership
"
}
]
},
@@ -28184,12 +28184,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team
"
}
]
},
@@ -28261,20 +28261,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/memberships/{username}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/memberships/{username}.
"
+ ]
},
{
"verb": "get",
@@ -28365,7 +28365,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n }\n]\n
"
}
]
@@ -28448,13 +28448,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if project is not managed by this team"
+ "description": "Not Found if project is not managed by this team
"
}
]
},
@@ -28579,12 +28579,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if the project is not owned by the organization",
+ "description": "Forbidden if the project is not owned by the organization
",
"payload": "{\n \"message\": \"Must have admin rights to Repository.\",\n \"documentation_url\": \"https://docs.github.com/enterprise-server@3.0/rest/reference/teams#add-or-update-team-project-permissions\"\n}\n
"
}
]
@@ -28655,15 +28655,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. This endpoint removes the project from the team, but does not delete the project.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/projects/{project_id}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. This endpoint removes the project from the team, but does not delete the project.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/projects/{project_id}.
"
+ ]
},
{
"verb": "get",
@@ -28748,7 +28748,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -28834,18 +28834,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Alternative response with repository permissions",
+ "description": "Alternative response with repository permissions
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"maintain\": false,\n \"push\": false,\n \"triage\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"triage\": false,\n \"push\": false,\n \"maintain\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if team has permission for the repository. This is the response when the repository media type hasn't been provded in the Accept header."
+ "description": "Response if team has permission for the repository. This is the response when the repository media type hasn't been provded in the Accept header.
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team does not have permission for the repository"
+ "description": "Not Found if team does not have permission for the repository
"
}
]
},
@@ -28954,14 +28954,14 @@
"categoryLabel": "Teams",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "To add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization. Note that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nNote: You can also specify a team by org_id and team_id using the route PUT /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
\nFor more information about the permission levels, see \"Repository permission levels for an organization\".
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "To add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization. Note that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nNote: You can also specify a team by org_id and team_id using the route PUT /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
\nFor more information about the permission levels, see \"Repository permission levels for an organization\".
",
"bodyParameters": [
{
"type": "string",
@@ -29057,15 +29057,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. This does not delete the repository, it just removes it from the team.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. This does not delete the repository, it just removes it from the team.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
"
+ ]
},
{
"verb": "get",
@@ -29150,7 +29150,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if child teams exist",
+ "description": "if child teams exist
",
"payload": "[\n {\n \"id\": 2,\n \"node_id\": \"MDQ6VGVhbTI=\",\n \"url\": \"https://api.github.com/teams/2\",\n \"name\": \"Original Roster\",\n \"slug\": \"original-roster\",\n \"description\": \"Started it all.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/2/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/2/repos\",\n \"parent\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n },\n \"html_url\": \"https://github.com/orgs/rails/teams/core\"\n }\n]\n
"
}
]
@@ -29218,28 +29218,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -29362,33 +29362,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -29450,34 +29450,34 @@
"subcategoryLabel": "Cards",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -29578,32 +29578,32 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Response"
+ "description": "Response
"
}
],
"bodyParameters": [
@@ -29693,28 +29693,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -29818,23 +29818,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -29896,29 +29896,29 @@
"subcategoryLabel": "Columns",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -30019,23 +30019,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -30214,33 +30214,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Response"
+ "description": "Response
"
}
]
},
@@ -30333,27 +30333,27 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -30429,23 +30429,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -30632,38 +30632,38 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if the authenticated user does not have access to the project"
+ "description": "Not Found if the authenticated user does not have access to the project
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -30720,40 +30720,40 @@
"category": "projects",
"categoryLabel": "Projects",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a project board. Returns a 404 Not Found status if projects are disabled.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Delete Success"
+ "description": "Delete Success
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a project board. Returns a 404 Not Found status if projects are disabled.
"
+ ]
},
{
"verb": "get",
@@ -30853,33 +30853,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -30978,39 +30978,39 @@
"subcategoryLabel": "Collaborators",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Adds a collaborator to an organization project and sets their permission level. You must be an organization owner or a project admin to add a collaborator.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Adds a collaborator to an organization project and sets their permission level. You must be an organization owner or a project admin to add a collaborator.
",
"bodyParameters": [
{
"description": "The permission to grant the collaborator.
",
@@ -31095,40 +31095,40 @@
"subcategory": "collaborators",
"subcategoryLabel": "Collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a collaborator from an organization project. You must be an organization owner or a project admin to remove a collaborator.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a collaborator from an organization project. You must be an organization owner or a project admin to remove a collaborator.
"
+ ]
},
{
"verb": "get",
@@ -31201,33 +31201,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -31313,23 +31313,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -31432,28 +31432,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -31500,18 +31500,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"resources\": {\n \"core\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1372700873,\n \"used\": 1\n },\n \"search\": {\n \"limit\": 30,\n \"remaining\": 18,\n \"reset\": 1372697452,\n \"used\": 12\n },\n \"graphql\": {\n \"limit\": 5000,\n \"remaining\": 4993,\n \"reset\": 1372700389,\n \"used\": 7\n },\n \"integration_manifest\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1551806725,\n \"used\": 1\n },\n \"code_scanning_upload\": {\n \"limit\": 500,\n \"remaining\": 499,\n \"reset\": 1551806725,\n \"used\": 1\n }\n },\n \"rate\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1372700873,\n \"used\": 1\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -31571,35 +31571,35 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Reactions API. We recommend migrating your existing code to use the new delete reactions endpoints. For more information, see this blog post.
\nOAuth access tokens require the write:discussion scope, when deleting a team discussion or team discussion comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Reactions API. We recommend migrating your existing code to use the new delete reactions endpoints. For more information, see this blog post.
\nOAuth access tokens require the write:discussion scope, when deleting a team discussion or team discussion comment.
"
+ ]
},
{
"verb": "get",
@@ -31686,17 +31686,17 @@
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -32116,28 +32116,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"push\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"organization\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"parent\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"source\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n}\n
"
},
{
"httpStatusCode": "307",
"httpStatusMessage": "Temporary Redirect",
- "description": "Temporary Redirect"
+ "description": "Temporary Redirect
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -32203,23 +32203,23 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "307",
"httpStatusMessage": "Temporary Redirect",
- "description": "Temporary Redirect"
+ "description": "Temporary Redirect
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "If an organization owner has configured the organization to prevent members from deleting organization-owned repositories, a member will get this response:",
+ "description": "If an organization owner has configured the organization to prevent members from deleting organization-owned repositories, a member will get this response:
",
"payload": "{\n \"message\": \"Organization members cannot delete repositories.\",\n \"documentation_url\": \"https://docs.github.com/enterprise-server@3.0/rest/reference/repos#delete-a-repository\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -32307,7 +32307,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"artifacts\": [\n {\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n },\n {\n \"id\": 13,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMw==\",\n \"name\": \"\",\n \"size_in_bytes\": 453,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -32386,7 +32386,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-01-21T14:59:22Z\",\n \"updated_at\": \"2020-01-21T14:59:22Z\"\n}\n
"
}
]
@@ -32459,15 +32459,15 @@
"subcategory": "artifacts",
"subcategoryLabel": "Artifacts",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes an artifact for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes an artifact for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -32546,15 +32546,15 @@
"subcategory": "artifacts",
"subcategoryLabel": "Artifacts",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download an archive for a repository. This URL expires after 1 minute. Look for Location: in\nthe response header to find the URL for the download. The :archive_format must be zip. Anyone with read access to\nthe repository can use this endpoint. If the repository is private you must use an access token with the repo scope.\nGitHub Apps must have the actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download an archive for a repository. This URL expires after 1 minute. Look for Location: in\nthe response header to find the URL for the download. The :archive_format must be zip. Anyone with read access to\nthe repository can use this endpoint. If the repository is private you must use an access token with the repo scope.\nGitHub Apps must have the actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -32630,7 +32630,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 399444496,\n \"run_id\": 29679449,\n \"run_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\",\n \"node_id\": \"MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\",\n \"head_sha\": \"f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/runs/399444496\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"started_at\": \"2020-01-20T17:42:40Z\",\n \"completed_at\": \"2020-01-20T17:44:39Z\",\n \"name\": \"build\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 1,\n \"started_at\": \"2020-01-20T09:42:40.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:41.000-08:00\"\n },\n {\n \"name\": \"Run actions/checkout@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 2,\n \"started_at\": \"2020-01-20T09:42:41.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Set up Ruby\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 3,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Run actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 4,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:48.000-08:00\"\n },\n {\n \"name\": \"Install Bundler\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 5,\n \"started_at\": \"2020-01-20T09:42:48.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:52.000-08:00\"\n },\n {\n \"name\": \"Install Gems\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 6,\n \"started_at\": \"2020-01-20T09:42:52.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:53.000-08:00\"\n },\n {\n \"name\": \"Run Tests\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 7,\n \"started_at\": \"2020-01-20T09:42:53.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:59.000-08:00\"\n },\n {\n \"name\": \"Deploy to Heroku\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 8,\n \"started_at\": \"2020-01-20T09:42:59.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Post actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 16,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Complete job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 17,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n }\n ],\n \"check_run_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\"\n}\n
"
}
]
@@ -32703,15 +32703,15 @@
"subcategory": "workflow-jobs",
"subcategoryLabel": "Workflow jobs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a plain text file of logs for a workflow job. This link expires after 1 minute. Look\nfor Location: in the response header to find the URL for the download. Anyone with read access to the repository can\nuse this endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must\nhave the actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a plain text file of logs for a workflow job. This link expires after 1 minute. Look\nfor Location: in the response header to find the URL for the download. Anyone with read access to the repository can\nuse this endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must\nhave the actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -32777,7 +32777,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled\": true,\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/repositories/42/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -32883,14 +32883,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for enabling GitHub Actions and allowed actions in the repository.
\nIf the repository belongs to an organization or enterprise that has set restrictive permissions at the organization or enterprise levels, such as allowed_actions to selected actions, then you cannot override them for the repository.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for enabling GitHub Actions and allowed actions in the repository.
\nIf the repository belongs to an organization or enterprise that has set restrictive permissions at the organization or enterprise levels, such as allowed_actions to selected actions, then you cannot override them for the repository.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -32981,7 +32981,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -33094,14 +33094,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in a repository. To use this endpoint, the repository permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for a repository.\"
\nIf the repository belongs to an organization or enterprise that has selected actions set at the organization or enterprise levels, then you cannot override any of the allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the repository must belong to an enterprise. If the repository does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in a repository. To use this endpoint, the repository permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for a repository.\"
\nIf the repository belongs to an organization or enterprise that has selected actions set at the organization or enterprise levels, then you cannot override any of the allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the repository must belong to an enterprise. If the repository does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -33210,7 +33210,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -33279,7 +33279,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"os\": \"osx\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-osx-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-osx-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm-2.164.0.tar.gz\"\n },\n {\n \"os\": \"win\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-win-x64-2.164.0.zip\",\n \"filename\": \"actions-runner-win-x64-2.164.0.zip\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm64-2.164.0.tar.gz\"\n }\n]\n
"
}
]
@@ -33348,7 +33348,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"LLBF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-22T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -33417,7 +33417,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"AABF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-29T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -33496,7 +33496,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 23,\n \"name\": \"MBP\",\n \"os\": \"macos\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
}
]
@@ -33569,15 +33569,15 @@
"subcategory": "self-hosted-runners",
"subcategoryLabel": "Self hosted runners",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from a repository. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the repo\nscope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from a repository. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the repo\nscope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -33739,7 +33739,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"workflow_runs\": [\n {\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n }\n ]\n}\n
"
}
]
@@ -33829,7 +33829,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"check_suite_id\": 42,\n \"check_suite_node_id\": \"MDEwOkNoZWNrU3VpdGU0Mg==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n}\n
"
}
]
@@ -33902,15 +33902,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Delete a specific workflow run. Anyone with write access to the repository can use this endpoint. If the repository is\nprivate you must use an access token with the repo scope. GitHub Apps must have the actions:write permission to use\nthis endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Delete a specific workflow run. Anyone with write access to the repository can use this endpoint. If the repository is\nprivate you must use an access token with the repo scope. GitHub Apps must have the actions:write permission to use\nthis endpoint.
"
+ ]
},
{
"verb": "get",
@@ -34006,7 +34006,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"artifacts\": [\n {\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n },\n {\n \"id\": 13,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMw==\",\n \"name\": \"\",\n \"size_in_bytes\": 453,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -34079,15 +34079,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Cancels a workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Cancels a workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -34198,7 +34198,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"jobs\": [\n {\n \"id\": 399444496,\n \"run_id\": 29679449,\n \"run_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\",\n \"node_id\": \"MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\",\n \"head_sha\": \"f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/runs/399444496\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"started_at\": \"2020-01-20T17:42:40Z\",\n \"completed_at\": \"2020-01-20T17:44:39Z\",\n \"name\": \"build\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 1,\n \"started_at\": \"2020-01-20T09:42:40.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:41.000-08:00\"\n },\n {\n \"name\": \"Run actions/checkout@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 2,\n \"started_at\": \"2020-01-20T09:42:41.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Set up Ruby\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 3,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Run actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 4,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:48.000-08:00\"\n },\n {\n \"name\": \"Install Bundler\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 5,\n \"started_at\": \"2020-01-20T09:42:48.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:52.000-08:00\"\n },\n {\n \"name\": \"Install Gems\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 6,\n \"started_at\": \"2020-01-20T09:42:52.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:53.000-08:00\"\n },\n {\n \"name\": \"Run Tests\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 7,\n \"started_at\": \"2020-01-20T09:42:53.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:59.000-08:00\"\n },\n {\n \"name\": \"Deploy to Heroku\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 8,\n \"started_at\": \"2020-01-20T09:42:59.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Post actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 16,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Complete job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 17,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n }\n ],\n \"check_run_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\"\n }\n ]\n}\n
"
}
]
@@ -34271,15 +34271,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download an archive of log files for a workflow run. This link expires after 1 minute. Look for\nLocation: in the response header to find the URL for the download. Anyone with read access to the repository can use\nthis endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must have\nthe actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download an archive of log files for a workflow run. This link expires after 1 minute. Look for\nLocation: in the response header to find the URL for the download. Anyone with read access to the repository can use\nthis endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must have\nthe actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -34349,15 +34349,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes all logs for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes all logs for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -34429,15 +34429,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Re-runs your workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Re-runs your workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -34523,7 +34523,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"secrets\": [\n {\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n },\n {\n \"name\": \"GIST_ID\",\n \"created_at\": \"2020-01-10T10:59:22Z\",\n \"updated_at\": \"2020-01-11T11:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -34592,7 +34592,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -34671,7 +34671,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n}\n
"
}
]
@@ -34723,7 +34723,7 @@
}
],
"summary": "Create or update a repository secret",
- "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -34784,15 +34784,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -34883,15 +34883,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in a repository using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in a repository using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -34977,7 +34977,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"workflows\": [\n {\n \"id\": 161335,\n \"node_id\": \"MDg6V29ya2Zsb3cxNjEzMzU=\",\n \"name\": \"CI\",\n \"path\": \".github/workflows/blank.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/161335\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/161335\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/CI/badge.svg\"\n },\n {\n \"id\": 269289,\n \"node_id\": \"MDE4OldvcmtmbG93IFNlY29uZGFyeTI2OTI4OQ==\",\n \"name\": \"Linter\",\n \"path\": \".github/workflows/linter.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/269289\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/269289\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/Linter/badge.svg\"\n }\n ]\n}\n
"
}
]
@@ -35063,7 +35063,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 161335,\n \"node_id\": \"MDg6V29ya2Zsb3cxNjEzMzU=\",\n \"name\": \"CI\",\n \"path\": \".github/workflows/blank.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/161335\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/161335\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/CI/badge.svg\"\n}\n
"
}
]
@@ -35143,15 +35143,15 @@
"subcategory": "workflows",
"subcategoryLabel": "Workflows",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Disables a workflow and sets the state of the workflow to disabled_manually. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Disables a workflow and sets the state of the workflow to disabled_manually. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -35273,14 +35273,14 @@
"subcategoryLabel": "Workflows",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "You can use this endpoint to manually trigger a GitHub Actions workflow run. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must configure your GitHub Actions workflow to run when the workflow_dispatch webhook event occurs. The inputs are configured in the workflow file. For more information about how to configure the workflow_dispatch event in the workflow file, see \"Events that trigger workflows.\"
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint. For more information, see \"Creating a personal access token for the command line.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "You can use this endpoint to manually trigger a GitHub Actions workflow run. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must configure your GitHub Actions workflow to run when the workflow_dispatch webhook event occurs. The inputs are configured in the workflow file. For more information about how to configure the workflow_dispatch event in the workflow file, see \"Events that trigger workflows.\"
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint. For more information, see \"Creating a personal access token for the command line.\"
",
"bodyParameters": [
{
"type": "string",
@@ -35381,15 +35381,15 @@
"subcategory": "workflows",
"subcategoryLabel": "Workflows",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Enables a workflow and sets the state of the workflow to active. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Enables a workflow and sets the state of the workflow to active. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -35568,7 +35568,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"workflow_runs\": [\n {\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n }\n ]\n}\n
"
}
]
@@ -35657,13 +35657,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -35734,20 +35734,20 @@
"subcategory": "assignees",
"subcategoryLabel": "Assignees",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Checks if a user has permission to be assigned to an issue in this repository.
\nIf the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
\nOtherwise a 404 status code is returned.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "If the `assignee` can be assigned to issues in the repository, a `204` header with no content is returned."
+ "description": "If the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Otherwise a `404` status code is returned."
+ "description": "Otherwise a 404 status code is returned.
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Checks if a user has permission to be assigned to an issue in this repository.
\nIf the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
\nOtherwise a 404 status code is returned.
"
+ ]
},
{
"verb": "get",
@@ -35841,13 +35841,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"protected\": true,\n \"protection\": {\n \"required_status_checks\": {\n \"enforcement_level\": \"non_admins\",\n \"contexts\": [\n \"ci-test\",\n \"linter\"\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/octocat/hello-world/branches/master/protection\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -35919,29 +35919,29 @@
"categoryLabel": "Branches",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -36025,13 +36025,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection\",\n \"required_status_checks\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\",\n \"enforcement_level\": \"non_admins\"\n },\n \"enforce_admins\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n },\n \"required_pull_request_reviews\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n },\n \"restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"apps_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"apps\": [\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n ]\n },\n \"required_linear_history\": {\n \"enabled\": true\n },\n \"allow_force_pushes\": {\n \"enabled\": true\n },\n \"allow_deletions\": {\n \"enabled\": true\n },\n \"required_conversation_resolution\": {\n \"enabled\": true\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -36784,29 +36784,29 @@
"subcategoryLabel": "Branch protection",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nProtecting a branch requires admin or owner permissions to the repository.
\nNote: Passing new arrays of users and teams replaces their previous values.
\nNote: The list of users, apps, and teams in total is limited to 100 items.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nProtecting a branch requires admin or owner permissions to the repository.
\nNote: Passing new arrays of users and teams replaces their previous values.
\nNote: The list of users, apps, and teams in total is limited to 100 items.
",
"bodyParameters": [
{
"type": "object or nullable",
@@ -37488,20 +37488,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -37578,7 +37578,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n}\n
"
}
]
@@ -37658,7 +37658,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n}\n
"
}
]
@@ -37732,20 +37732,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nRemoving admin enforcement requires admin or owner permissions to the repository and branch protection to be enabled.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nRemoving admin enforcement requires admin or owner permissions to the repository and branch protection to be enabled.
"
+ ]
},
{
"verb": "get",
@@ -37829,7 +37829,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n}\n
"
}
]
@@ -38043,13 +38043,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -38218,20 +38218,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -38315,13 +38315,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures\",\n \"enabled\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -38407,13 +38407,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures\",\n \"enabled\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -38493,20 +38493,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nWhen authenticated with admin or owner permissions to the repository, you can use this endpoint to disable required signed commits on a branch. You must enable branch protection to require signed commits.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nWhen authenticated with admin or owner permissions to the repository, you can use this endpoint to disable required signed commits on a branch. You must enable branch protection to require signed commits.
"
+ ]
},
{
"verb": "get",
@@ -38583,13 +38583,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"strict\": true,\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -38732,18 +38732,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"strict\": true,\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -38816,15 +38816,15 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -38901,13 +38901,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -39044,23 +39044,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\",\n \"continuous-integration/jenkins\"\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -39197,18 +39197,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -39344,18 +39344,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -39434,13 +39434,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"apps_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"apps\": [\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -39513,15 +39513,15 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nDisables the ability to restrict who can push to this branch.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nDisables the ability to restrict who can push to this branch.
"
+ ]
},
{
"verb": "get",
@@ -39598,13 +39598,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -39740,13 +39740,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -39882,13 +39882,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40023,13 +40023,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40108,13 +40108,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -40251,13 +40251,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40394,13 +40394,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40536,13 +40536,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40621,13 +40621,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -40763,13 +40763,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40905,13 +40905,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -41046,13 +41046,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -43210,7 +43210,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n}\n
"
}
]
@@ -44304,7 +44304,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n}\n
"
}
],
@@ -45344,7 +45344,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"path\": \"README.md\",\n \"start_line\": 2,\n \"end_line\": 2,\n \"start_column\": 5,\n \"end_column\": 10,\n \"annotation_level\": \"warning\",\n \"title\": \"Spell Checker\",\n \"message\": \"Check your spelling for 'banaas'.\",\n \"raw_details\": \"Do you mean 'bananas' or 'banana'?\",\n \"blob_href\": \"https://api.github.com/repos/github/rest-api-description/git/blobs/abc\"\n }\n]\n
"
}
]
@@ -45451,13 +45451,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "when the suite already existed",
+ "description": "when the suite already existed
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when the suite was created",
+ "description": "Response when the suite was created
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
}
]
@@ -45610,7 +45610,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"preferences\": {\n \"auto_trigger_checks\": [\n {\n \"app_id\": 2,\n \"setting\": true\n },\n {\n \"app_id\": 4,\n \"setting\": false\n }\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n }\n}\n
"
}
],
@@ -45755,7 +45755,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
}
]
@@ -45894,7 +45894,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_runs\": [\n {\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -45967,15 +45967,15 @@
"subcategory": "suites",
"subcategoryLabel": "Suites",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check suite, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check suite, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
"
+ ]
},
{
"verb": "get",
@@ -46110,23 +46110,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"number\": 4,\n \"created_at\": \"2020-02-13T12:29:18Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/4\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/4\",\n \"state\": \"open\",\n \"dismissed_by\": null,\n \"dismissed_at\": null,\n \"dismissed_reason\": null,\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"description\": \"Arbitrary file write during zip extraction\",\n \"name\": \"js/zipslip\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"open\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/4/instances\"\n },\n {\n \"number\": 3,\n \"created_at\": \"2020-02-13T12:29:18Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/3\",\n \"state\": \"dismissed\",\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-02-14T12:29:18Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"description\": \"Arbitrary file write during zip extraction\",\n \"name\": \"js/zipslip\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"open\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"lib/ab12-gen.js\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": []\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -46204,23 +46204,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-06-19T11:21:34Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/42\",\n \"state\": \"dismissed\",\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 54933897,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-02-14T12:29:18Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"security_severity_level\": \"high\",\n \"description\": \"Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\",\n \"name\": \"js/zipslip\",\n \"full_description\": \"Extracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten.\",\n \"tags\": [\n \"security\",\n \"external/cwe/cwe-022\"\n ],\n \"help\": \"# Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\\\\nExtracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten ...\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"dismissed\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -46376,23 +46376,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-08-25T21:28:36Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/42\",\n \"state\": \"dismissed\",\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-09-02T22:34:56Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"security_severity_level\": \"high\",\n \"description\": \"Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\",\n \"name\": \"js/zipslip\",\n \"full_description\": \"Extracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten.\",\n \"tags\": [\n \"security\",\n \"external/cwe/cwe-022\"\n ],\n \"help\": \"# Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\\\\nExtracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten ...\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"dismissed\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -46523,23 +46523,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/main\",\n \"commit_sha\": \"d99612c3e1f2970085cfbaeadf8f010ef69bad83\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:analyze\",\n \"environment\": \"{\\\"language\\\":\\\"python\\\"}\",\n \"error\": \"\",\n \"category\": \".github/workflows/codeql-analysis.yml:analyze/language:python\",\n \"created_at\": \"2020-08-27T15:05:21Z\",\n \"results_count\": 17,\n \"rules_count\": 49,\n \"id\": 201,\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/201\",\n \"sarif_id\": \"6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53\",\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"deletable\": true,\n \"warning\": \"\"\n },\n {\n \"ref\": \"refs/heads/my-branch\",\n \"commit_sha\": \"c8cff6510d4d084fb1b4aa13b64b97ca12b07321\",\n \"analysis_key\": \".github/workflows/shiftleft.yml:build\",\n \"environment\": \"{}\",\n \"error\": \"\",\n \"category\": \".github/workflows/shiftleft.yml:build/\",\n \"created_at\": \"2020-08-31T22:46:44Z\",\n \"results_count\": 17,\n \"rules_count\": 32,\n \"id\": 200,\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/200\",\n \"sarif_id\": \"8981cd8e-b078-4ac3-a3be-1dad7dbd0b582\",\n \"tool\": {\n \"name\": \"Python Security Analysis\",\n \"guid\": null,\n \"version\": \"1.2.0\"\n },\n \"deletable\": true,\n \"warning\": \"\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -46749,27 +46749,27 @@
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request if the sarif field is invalid"
+ "description": "Bad Request if the sarif field is invalid
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "413",
"httpStatusMessage": "Payload Too Large",
- "description": "Payload Too Large if the sarif field is too large"
+ "description": "Payload Too Large if the sarif field is too large
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -46871,13 +46871,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"permissions\": {\n \"pull\": true,\n \"push\": true,\n \"admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -46946,20 +46946,20 @@
"category": "collaborators",
"categoryLabel": "Collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "For organization-owned repositories, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners.
\nTeam members will include the members of child teams.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if user is a collaborator"
+ "description": "Response if user is a collaborator
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if user is not a collaborator"
+ "description": "Not Found if user is not a collaborator
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "For organization-owned repositories, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners.
\nTeam members will include the members of child teams.
"
+ ]
},
{
"verb": "put",
@@ -47099,23 +47099,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when a new invitation is created",
+ "description": "Response when a new invitation is created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\"\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when person is already a collaborator"
+ "description": "Response when person is already a collaborator
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -47185,14 +47185,14 @@
"categoryLabel": "Collaborators",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -47265,13 +47265,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if user has admin permissions",
+ "description": "if user has admin permissions
",
"payload": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -47366,7 +47366,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -47452,13 +47452,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -47574,13 +47574,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Nice change\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -47653,19 +47653,19 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -47785,13 +47785,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -47931,24 +47931,24 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -48033,15 +48033,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a commit comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a commit comment.
"
+ ]
},
{
"verb": "get",
@@ -48177,28 +48177,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -48282,13 +48282,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"branch_5\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"protected\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -48394,7 +48394,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -48570,18 +48570,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -48685,7 +48685,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"draft\": false\n }\n]\n
"
}
]
@@ -48783,23 +48783,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ],\n \"stats\": {\n \"additions\": 104,\n \"deletions\": 4,\n \"total\": 108\n },\n \"files\": [\n {\n \"filename\": \"file1.txt\",\n \"additions\": 10,\n \"deletions\": 2,\n \"changes\": 12,\n \"status\": \"modified\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"patch\": \"@@ -29,7 +29,7 @@\\n.....\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -48947,7 +48947,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_runs\": [\n {\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -49068,7 +49068,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_suites\": [\n {\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n }\n ]\n}\n
"
}
]
@@ -49168,13 +49168,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"state\": \"success\",\n \"statuses\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\"\n },\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"id\": 2,\n \"node_id\": \"MDY6U3RhdHVzMg==\",\n \"state\": \"success\",\n \"description\": \"Testing has completed successfully\",\n \"target_url\": \"https://ci.example.com/2000/output\",\n \"context\": \"security/brakeman\",\n \"created_at\": \"2012-08-20T01:19:13Z\",\n \"updated_at\": \"2012-08-20T01:19:13Z\"\n }\n ],\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"total_count\": 2,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e/status\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -49273,13 +49273,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
}
]
},
@@ -49355,18 +49355,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/compare/master...topic\",\n \"html_url\": \"https://github.com/octocat/Hello-World/compare/master...topic\",\n \"permalink_url\": \"https://github.com/octocat/Hello-World/compare/octocat:bbcd538c8e72b8c175046e27cc8f907076331401...octocat:0328041d1152db8ae77652d1618a02e57f745f17\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/compare/master...topic.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/compare/master...topic.patch\",\n \"base_commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n },\n \"merge_base_commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n },\n \"status\": \"behind\",\n \"ahead_by\": 1,\n \"behind_by\": 2,\n \"total_commits\": 1,\n \"commits\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n ],\n \"files\": [\n {\n \"sha\": \"bbcd538c8e72b8c175046e27cc8f907076331401\",\n \"filename\": \"file1.txt\",\n \"status\": \"added\",\n \"additions\": 103,\n \"deletions\": 21,\n \"changes\": 124,\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/file1.txt?ref=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"patch\": \"@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -49515,38 +49515,38 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 101,\n \"title\": \"[A-1234] Error found in core/models.py file'\",\n \"body\": \"You have used an email that already exists for the user_email_uniq field.\\n ## DETAILS:\\n\\nThe (email)=(Octocat@github.com) already exists.\\n\\n The error was found in core/models.py in get_or_create_user at line 62.\\n\\n self.save()\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -49659,17 +49659,17 @@
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Found"
+ "description": "Found
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -49979,29 +49979,29 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": {\n \"name\": \"hello.txt\",\n \"path\": \"notes/hello.txt\",\n \"sha\": \"a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"size\": 9,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\",\n \"git_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"download_url\": \"https://raw.githubusercontent.com/octocat/HelloWorld/master/notes/hello.txt\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"git\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"html\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\"\n }\n },\n \"commit\": {\n \"sha\": \"18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"node_id\": \"MDY6Q29tbWl0MThhNDNjZDhlMWUzYTc5Yzc4NmUzZDgwOGE3M2QyM2I2ZDIxMmIxNg==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/9a21f8e2018f42ffcf369b24d2cd20bc25c9e66f\",\n \"sha\": \"9a21f8e2018f42ffcf369b24d2cd20bc25c9e66f\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/da5a433788da5c255edad7979b328b67d79f53f6\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/da5a433788da5c255edad7979b328b67d79f53f6\",\n \"sha\": \"da5a433788da5c255edad7979b328b67d79f53f6\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": {\n \"name\": \"hello.txt\",\n \"path\": \"notes/hello.txt\",\n \"sha\": \"95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"size\": 9,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\",\n \"git_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"download_url\": \"https://raw.githubusercontent.com/octocat/HelloWorld/master/notes/hello.txt\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"git\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"html\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\"\n }\n },\n \"commit\": {\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -50433,28 +50433,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": null,\n \"commit\": {\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
],
"bodyParameters": [
@@ -50689,23 +50689,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if repository contains content",
+ "description": "if repository contains content
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"contributions\": 32\n }\n]\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if repository is empty"
+ "description": "Response if repository is empty
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -50843,7 +50843,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n }\n]\n
"
}
]
@@ -51050,30 +51050,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Deployments offer a few configurable parameters with certain defaults.
\nThe ref parameter can be any named branch, tag, or SHA. At GitHub Enterprise Server we often deploy branches and verify them\nbefore we merge a pull request.
\nThe environment parameter allows deployments to be issued to different runtime environments. Teams often have\nmultiple environments for verifying their applications, such as production, staging, and qa. This parameter\nmakes it easier to track which environments have requested deployments. The default environment is production.
\nThe auto_merge parameter is used to ensure that the requested ref is not behind the repository's default branch. If\nthe ref is behind the default branch for the repository, we will attempt to merge it for you. If the merge succeeds,\nthe API will return a successful merge commit. If merge conflicts prevent the merge from succeeding, the API will\nreturn a failure response.
\nBy default, commit statuses for every submitted context must be in a success\nstate. The required_contexts parameter allows you to specify a subset of contexts that must be success, or to\nspecify contexts that have not yet been submitted. You are not required to use commit statuses to deploy. If you do\nnot require any contexts or create any commit statuses, the deployment will always succeed.
\nThe payload parameter is available for any extra information that a deployment system might need. It is a JSON text\nfield that will be passed on when a deployment event is dispatched.
\nThe task parameter is used by the deployment system to allow different execution paths. In the web world this might\nbe deploy:migrations to run schema changes on the system. In the compiled world this could be a flag to compile an\napplication with debugging enabled.
\nUsers with repo or repo_deployment scopes can create a deployment for a given ref.
\nMerged branch response
\nYou will see this response when GitHub automatically merges the base branch into the topic branch instead of creating\na deployment. This auto-merge happens when:
\n\n- Auto-merge option is enabled in the repository
\n- Topic branch does not include the latest changes on the base branch, which is
master in the response example \n- There are no merge conflicts
\n
\nIf there are no new commits in the base branch, a new request to create a deployment should give a successful\nresponse.
\nMerge conflict response
\nThis error happens when the auto_merge option is enabled and when the default branch (in this case master), can't\nbe merged into the branch that's being deployed (in this case topic-branch), due to merge conflicts.
\nFailed commit status checks
\nThis error happens when the required_contexts parameter indicates that one or more contexts need to have a success\nstatus for the commit to be deployed, but one or more of the required contexts do not have a state of success.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Simple example",
- "payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
- },
- {
- "httpStatusCode": "202",
- "httpStatusMessage": "Accepted",
- "description": "Merged branch response",
- "payload": "{\n \"message\": \"Auto-merged master into topic-branch on deployment.\"\n}\n
"
- },
- {
- "httpStatusCode": "409",
- "httpStatusMessage": "Conflict",
- "description": "Conflict when there is a merge conflict or the commit's status checks failed"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -51174,6 +51150,30 @@
"rawDescription": "Specifies if the given environment is one that end-users directly interact with. Default: `true` when `environment` is `production` and `false` otherwise. \n**Note:** This parameter requires you to use the [`application/vnd.github.ant-man-preview+json`](https://docs.github.com/enterprise-server@3.0/rest/overview/api-previews#enhanced-deployments) custom media type.",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Simple example",
+ "payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
+ },
+ {
+ "httpStatusCode": "202",
+ "httpStatusMessage": "Accepted",
+ "description": "Merged branch response
",
+ "payload": "{\n \"message\": \"Auto-merged master into topic-branch on deployment.\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "409",
+ "httpStatusMessage": "Conflict",
+ "description": "Conflict when there is a merge conflict or the commit's status checks failed
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -51260,13 +51260,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -51336,25 +51336,25 @@
"category": "deployments",
"categoryLabel": "Deployments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "To ensure there can always be an active deployment, you can only delete an inactive deployment. Anyone with repo or repo_deployment scopes can delete an inactive deployment.
\nTo set a deployment as inactive, you must:
\n\n- Create a new deployment that is active so that the system has a record of the current state, then delete the previously active deployment.
\n- Mark the active deployment as inactive by adding any non-successful deployment status.
\n
\nFor more information, see \"Create a deployment\" and \"Create a deployment status.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "To ensure there can always be an active deployment, you can only delete an inactive deployment. Anyone with repo or repo_deployment scopes can delete an inactive deployment.
\nTo set a deployment as inactive, you must:
\n\n- Create a new deployment that is active so that the system has a record of the current state, then delete the previously active deployment.
\n- Mark the active deployment as inactive by adding any non-successful deployment status.
\n
\nFor more information, see \"Create a deployment\" and \"Create a deployment status.\"
"
+ ]
},
{
"verb": "get",
@@ -51462,13 +51462,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -51743,13 +51743,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -51848,13 +51848,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -51959,19 +51959,19 @@
"categoryLabel": "Repos",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "You can use this endpoint to trigger a webhook event called repository_dispatch when you want activity that happens outside of GitHub Enterprise Server to trigger a GitHub Actions workflow or GitHub App webhook. You must configure your GitHub Actions workflow or GitHub App to run when the repository_dispatch event occurs. For an example repository_dispatch webhook payload, see \"RepositoryDispatchEvent.\"
\nThe client_payload parameter is available for any extra information that your workflow might need. This parameter is a JSON payload that will be passed on when the webhook event is dispatched. For example, the client_payload can include a message that a user would like to send using a GitHub Actions workflow. Or the client_payload can be used as a test to debug your workflow.
\nThis endpoint requires write access to the repository by providing either:
\n\nThis input example shows how you can use the client_payload as a test to debug your workflow.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "You can use this endpoint to trigger a webhook event called repository_dispatch when you want activity that happens outside of GitHub Enterprise Server to trigger a GitHub Actions workflow or GitHub App webhook. You must configure your GitHub Actions workflow or GitHub App to run when the repository_dispatch event occurs. For an example repository_dispatch webhook payload, see \"RepositoryDispatchEvent.\"
\nThe client_payload parameter is available for any extra information that your workflow might need. This parameter is a JSON payload that will be passed on when the webhook event is dispatched. For example, the client_payload can include a message that a user would like to send using a GitHub Actions workflow. Or the client_payload can be used as a test to debug your workflow.
\nThis endpoint requires write access to the repository by providing either:
\n\nThis input example shows how you can use the client_payload as a test to debug your workflow.
",
"bodyParameters": [
{
"type": "string",
@@ -52076,14 +52076,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -52186,13 +52186,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
}
]
},
@@ -52293,28 +52293,28 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"push\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"organization\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"parent\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"source\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -52441,28 +52441,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/git/blobs/3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"sha\": \"3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -52539,23 +52539,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": \"Q29udGVudCBvZiB0aGUgYmxvYg==\",\n \"encoding\": \"base64\",\n \"url\": \"https://api.github.com/repos/octocat/example/git/blobs/3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"sha\": \"3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"size\": 19,\n \"node_id\": \"Q29udGVudCBvZiB0aGUgYmxvYg==\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -52845,18 +52845,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/827efc6d56897b048c772eb4087f854f46256132\",\n \"sha\": \"827efc6d56897b048c772eb4087f854f46256132\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7d1b31e74ee336d15cbd21741bc88a537ed063a0\",\n \"sha\": \"7d1b31e74ee336d15cbd21741bc88a537ed063a0\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7d1b31e74ee336d15cbd21741bc88a537ed063a0\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n },\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -53130,13 +53130,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"added readme, because im a good github citizen\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -53235,7 +53235,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/feature-a\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlLWE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/feature-a\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n },\n {\n \"ref\": \"refs/heads/feature-b\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlLWI=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/feature-b\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac\"\n }\n }\n]\n
"
}
]
@@ -53315,13 +53315,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -53465,13 +53465,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -53609,13 +53609,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -53689,19 +53689,19 @@
"subcategoryLabel": "Refs",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -53916,13 +53916,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"node_id\": \"MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw==\",\n \"tag\": \"v0.0.1\",\n \"sha\": \"940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"message\": \"initial version\",\n \"tagger\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\",\n \"date\": \"2014-11-07T22:01:45Z\"\n },\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\"\n },\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -54121,13 +54121,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"node_id\": \"MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw==\",\n \"tag\": \"v0.0.1\",\n \"sha\": \"940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"message\": \"initial version\",\n \"tagger\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\",\n \"date\": \"2014-11-07T22:01:45Z\"\n },\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\"\n },\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -54368,23 +54368,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"cd8274d15fa3ae2ab983129fb037999f264ba9a7\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/trees/cd8274d15fa3ae2ab983129fb037999f264ba9a7\",\n \"tree\": [\n {\n \"path\": \"file.rb\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"size\": 132,\n \"sha\": \"7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b\"\n }\n ],\n \"truncated\": true\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -54633,12 +54633,12 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -54726,13 +54726,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -55012,23 +55012,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -55292,13 +55292,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -55596,18 +55596,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -55884,19 +55884,19 @@
"subcategoryLabel": "Repos",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -55971,7 +55971,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -56112,14 +56112,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for a repository. To update more information about the webhook, including the active state and events, use \"Update a repository webhook.\"
\nAccess tokens must have the write:repo_hook or repo scope, and GitHub Apps must have the repository_hooks:write permission.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -56169,6 +56161,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -56238,20 +56238,20 @@
"subcategory": "repos",
"subcategoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the hook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the hook.
"
+ ]
},
{
"verb": "post",
@@ -56320,20 +56320,20 @@
"subcategory": "repos",
"subcategoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook is not subscribed to push events, the server will respond with 204 but no test POST will be generated.
\nNote: Previously /repos/:owner/:repo/hooks/:hook_id/test
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook is not subscribed to push events, the server will respond with 204 but no test POST will be generated.
\nNote: Previously /repos/:owner/:repo/hooks/:hook_id/test
"
+ ]
},
{
"verb": "get",
@@ -56397,18 +56397,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -56496,7 +56496,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
}
]
@@ -56621,7 +56621,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"expired\": false,\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\"\n}\n
"
}
]
@@ -56695,14 +56695,14 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -56905,23 +56905,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -56962,7 +56962,7 @@
}
],
"summary": "Create an issue",
- "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.0/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.0/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.0/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.0/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.0/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -57108,40 +57108,7 @@
"categoryLabel": "Issues",
"contentType": "application/json",
"notes": [],
- "descriptionHTML": "Any user with pull access to a repository can create an issue. If issues are disabled in the repository, the API returns a 410 Gone status.
\nThis endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "410",
- "httpStatusMessage": "Gone",
- "description": "Gone"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- },
- {
- "httpStatusCode": "503",
- "httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
- }
- ],
+ "descriptionHTML": "Any user with pull access to a repository can create an issue. If issues are disabled in the repository, the API returns a 410 Gone status.
\nThis endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
"bodyParameters": [
{
"oneOf": [
@@ -57242,6 +57209,39 @@
"rawDescription": "Logins for Users to assign to this issue. _NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise._",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "410",
+ "httpStatusMessage": "Gone",
+ "description": "Gone
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ },
+ {
+ "httpStatusCode": "503",
+ "httpStatusMessage": "Service Unavailable",
+ "description": "Service unavailable
"
+ }
]
},
{
@@ -57375,18 +57375,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -57476,13 +57476,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -57598,13 +57598,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -57677,14 +57677,14 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -57804,13 +57804,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -57950,19 +57950,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -58047,15 +58047,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE delete /repositories/:repository_id/issues/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to an issue comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE delete /repositories/:repository_id/issues/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to an issue comment.
"
+ ]
},
{
"verb": "get",
@@ -58148,13 +58148,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"issue\": {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -58238,23 +58238,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"issue\": {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"performed_via_github_app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -58336,28 +58336,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -58567,44 +58567,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Issue owners and users with push access can edit an issue.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
- },
- {
- "httpStatusCode": "301",
- "httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "410",
- "httpStatusMessage": "Gone",
- "description": "Gone"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- },
- {
- "httpStatusCode": "503",
- "httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
- }
- ],
"bodyParameters": [
{
"oneOf": [
@@ -58720,6 +58682,44 @@
"rawDescription": "Logins for Users to assign to this issue. Pass one or more user logins to _replace_ the set of assignees on this Issue. Send an empty array (`[]`) to clear all assignees from the Issue. _NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise._",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "301",
+ "httpStatusMessage": "Moved Permanently",
+ "description": "Moved permanently
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "410",
+ "httpStatusMessage": "Gone",
+ "description": "Gone
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ },
+ {
+ "httpStatusCode": "503",
+ "httpStatusMessage": "Service Unavailable",
+ "description": "Service unavailable
"
+ }
]
},
{
@@ -58840,7 +58840,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
}
]
@@ -58962,7 +58962,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
}
]
@@ -59079,18 +59079,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -59141,7 +59141,7 @@
}
],
"summary": "Create an issue comment",
- "description": "This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.0/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.0/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "This endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.0/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.0/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.0/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -59191,7 +59191,7 @@
"subcategoryLabel": "Comments",
"contentType": "application/json",
"notes": [],
- "descriptionHTML": "This endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
+ "descriptionHTML": "This endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
"bodyParameters": [
{
"type": "string",
@@ -59207,28 +59207,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -59333,13 +59333,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"performed_via_github_app\": null,\n \"label\": {\n \"name\": \"label\",\n \"color\": \"red\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -59437,13 +59437,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -59616,18 +59616,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -59800,18 +59800,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -59884,19 +59884,19 @@
"subcategoryLabel": "Labels",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -59981,18 +59981,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -60091,34 +60091,34 @@
"categoryLabel": "Issues",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Users with push access can lock an issue or pull request's conversation.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Users with push access can lock an issue or pull request's conversation.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -60203,25 +60203,25 @@
"category": "issues",
"categoryLabel": "Issues",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Users with push access can unlock an issue's conversation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Users with push access can unlock an issue's conversation.
"
+ ]
},
{
"verb": "get",
@@ -60341,18 +60341,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -60492,19 +60492,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -60589,15 +60589,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/issues/:issue_number/reactions/:reaction_id.
\nDelete a reaction to an issue.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/issues/:issue_number/reactions/:reaction_id.
\nDelete a reaction to an issue.
"
+ ]
},
{
"verb": "get",
@@ -60700,24 +60700,24 @@
"subcategoryLabel": "Timeline",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -60803,7 +60803,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n }\n]\n
"
}
]
@@ -60948,13 +60948,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -61032,13 +61032,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -61110,15 +61110,15 @@
"subcategory": "keys",
"subcategoryLabel": "Keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deploy keys are immutable. If you need to update a key, remove the key and create a new one instead.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deploy keys are immutable. If you need to update a key, remove the key and create a new one instead.
"
+ ]
},
{
"verb": "get",
@@ -61204,13 +61204,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -61354,18 +61354,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -61442,13 +61442,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -61598,7 +61598,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug%20:bug:\",\n \"name\": \"bug :bug:\",\n \"description\": \"Small bug fix required\",\n \"color\": \"b01f26\",\n \"default\": true\n}\n
"
}
]
@@ -61671,14 +61671,14 @@
"subcategoryLabel": "Labels",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -61742,7 +61742,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"C\": 78769,\n \"Python\": 7769\n}\n
"
}
]
@@ -61809,7 +61809,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"LICENSE\",\n \"path\": \"LICENSE\",\n \"sha\": \"401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"size\": 1077,\n \"url\": \"https://api.github.com/repos/benbalter/gman/contents/LICENSE?ref=master\",\n \"html_url\": \"https://github.com/benbalter/gman/blob/master/LICENSE\",\n \"git_url\": \"https://api.github.com/repos/benbalter/gman/git/blobs/401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"download_url\": \"https://raw.githubusercontent.com/benbalter/gman/master/LICENSE?lab=true\",\n \"type\": \"file\",\n \"content\": \"VGhlIE1JVCBMaWNlbnNlIChNSVQpCgpDb3B5cmlnaHQgKGMpIDIwMTMgQmVu\\nIEJhbHRlcgoKUGVybWlzc2lvbiBpcyBoZXJlYnkgZ3JhbnRlZCwgZnJlZSBv\\nZiBjaGFyZ2UsIHRvIGFueSBwZXJzb24gb2J0YWluaW5nIGEgY29weSBvZgp0\\naGlzIHNvZnR3YXJlIGFuZCBhc3NvY2lhdGVkIGRvY3VtZW50YXRpb24gZmls\\nZXMgKHRoZSAiU29mdHdhcmUiKSwgdG8gZGVhbCBpbgp0aGUgU29mdHdhcmUg\\nd2l0aG91dCByZXN0cmljdGlvbiwgaW5jbHVkaW5nIHdpdGhvdXQgbGltaXRh\\ndGlvbiB0aGUgcmlnaHRzIHRvCnVzZSwgY29weSwgbW9kaWZ5LCBtZXJnZSwg\\ncHVibGlzaCwgZGlzdHJpYnV0ZSwgc3VibGljZW5zZSwgYW5kL29yIHNlbGwg\\nY29waWVzIG9mCnRoZSBTb2Z0d2FyZSwgYW5kIHRvIHBlcm1pdCBwZXJzb25z\\nIHRvIHdob20gdGhlIFNvZnR3YXJlIGlzIGZ1cm5pc2hlZCB0byBkbyBzbywK\\nc3ViamVjdCB0byB0aGUgZm9sbG93aW5nIGNvbmRpdGlvbnM6CgpUaGUgYWJv\\ndmUgY29weXJpZ2h0IG5vdGljZSBhbmQgdGhpcyBwZXJtaXNzaW9uIG5vdGlj\\nZSBzaGFsbCBiZSBpbmNsdWRlZCBpbiBhbGwKY29waWVzIG9yIHN1YnN0YW50\\naWFsIHBvcnRpb25zIG9mIHRoZSBTb2Z0d2FyZS4KClRIRSBTT0ZUV0FSRSBJ\\nUyBQUk9WSURFRCAiQVMgSVMiLCBXSVRIT1VUIFdBUlJBTlRZIE9GIEFOWSBL\\nSU5ELCBFWFBSRVNTIE9SCklNUExJRUQsIElOQ0xVRElORyBCVVQgTk9UIExJ\\nTUlURUQgVE8gVEhFIFdBUlJBTlRJRVMgT0YgTUVSQ0hBTlRBQklMSVRZLCBG\\nSVRORVNTCkZPUiBBIFBBUlRJQ1VMQVIgUFVSUE9TRSBBTkQgTk9OSU5GUklO\\nR0VNRU5ULiBJTiBOTyBFVkVOVCBTSEFMTCBUSEUgQVVUSE9SUyBPUgpDT1BZ\\nUklHSFQgSE9MREVSUyBCRSBMSUFCTEUgRk9SIEFOWSBDTEFJTSwgREFNQUdF\\nUyBPUiBPVEhFUiBMSUFCSUxJVFksIFdIRVRIRVIKSU4gQU4gQUNUSU9OIE9G\\nIENPTlRSQUNULCBUT1JUIE9SIE9USEVSV0lTRSwgQVJJU0lORyBGUk9NLCBP\\nVVQgT0YgT1IgSU4KQ09OTkVDVElPTiBXSVRIIFRIRSBTT0ZUV0FSRSBPUiBU\\nSEUgVVNFIE9SIE9USEVSIERFQUxJTkdTIElOIFRIRSBTT0ZUV0FSRS4K\\n\",\n \"encoding\": \"base64\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/benbalter/gman/contents/LICENSE?ref=master\",\n \"git\": \"https://api.github.com/repos/benbalter/gman/git/blobs/401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"html\": \"https://github.com/benbalter/gman/blob/master/LICENSE\"\n },\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n}\n
"
}
]
@@ -61953,33 +61953,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Successful Response (The resulting merge commit)",
+ "description": "Successful Response (The resulting merge commit)
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ],\n \"stats\": {\n \"additions\": 104,\n \"deletions\": 4,\n \"total\": 108\n },\n \"files\": [\n {\n \"filename\": \"file1.txt\",\n \"additions\": 10,\n \"deletions\": 2,\n \"changes\": 12,\n \"status\": \"modified\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"patch\": \"@@ -29,7 +29,7 @@\\n.....\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when already merged"
+ "description": "Response when already merged
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found when the base or head does not exist"
+ "description": "Not Found when the base or head does not exist
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when there is a merge conflict"
+ "description": "Conflict when there is a merge conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -62113,13 +62113,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -62294,18 +62294,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -62383,13 +62383,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -62571,7 +62571,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
}
]
@@ -62645,19 +62645,19 @@
"subcategoryLabel": "Milestones",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -62753,7 +62753,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
}
]
@@ -62886,7 +62886,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n }\n]\n
"
}
]
@@ -62972,19 +62972,19 @@
"subcategoryLabel": "Notifications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Marks all notifications in a repository as \"read\" removes them from the default view on GitHub Enterprise Server. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub Enterprise Server will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List repository notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
}
],
- "descriptionHTML": "Marks all notifications in a repository as \"read\" removes them from the default view on GitHub Enterprise Server. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub Enterprise Server will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List repository notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"bodyParameters": [
{
"type": "string",
@@ -63060,13 +63060,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages\",\n \"status\": \"built\",\n \"cname\": \"developer.github.com\",\n \"custom_404\": false,\n \"html_url\": \"https://developer.github.com\",\n \"source\": {\n \"branch\": \"master\",\n \"path\": \"/\"\n },\n \"public\": true,\n \"https_certificate\": {\n \"state\": \"approved\",\n \"description\": \"Certificate is approved\",\n \"domains\": [\n \"developer.github.com\"\n ],\n \"expires_at\": \"2021-05-22\"\n },\n \"https_enforced\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -63230,18 +63230,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages\",\n \"status\": \"built\",\n \"cname\": \"developer.github.com\",\n \"custom_404\": false,\n \"html_url\": \"https://developer.github.com\",\n \"source\": {\n \"branch\": \"master\",\n \"path\": \"/\"\n },\n \"public\": true,\n \"https_certificate\": {\n \"state\": \"approved\",\n \"description\": \"Certificate is approved\",\n \"domains\": [\n \"developer.github.com\"\n ],\n \"expires_at\": \"2021-05-22\"\n },\n \"https_enforced\": true\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -63481,24 +63481,24 @@
"categoryLabel": "Pages",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Updates information for a GitHub Enterprise Server Pages site. For more information, see \"About GitHub Pages.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Updates information for a GitHub Enterprise Server Pages site. For more information, see \"About GitHub Pages.
",
"bodyParameters": [
{
"type": "string or nullable",
@@ -63634,24 +63634,24 @@
"categoryLabel": "Pages",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -63735,7 +63735,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n }\n]\n
"
}
]
@@ -63802,7 +63802,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/latest\",\n \"status\": \"queued\"\n}\n
"
}
]
@@ -63869,7 +63869,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n}\n
"
}
]
@@ -63945,7 +63945,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n}\n
"
}
]
@@ -64071,7 +64071,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\"\n }\n]\n
"
}
]
@@ -64157,7 +64157,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\"\n}\n
"
}
]
@@ -64287,7 +64287,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"enabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/repos/octocat/hello-world/pre-receive-hooks/42\"\n}\n
"
}
]
@@ -64373,7 +64373,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Responds with effective values inherited from owner and/or global level.",
+ "description": "Responds with effective values inherited from owner and/or global level.
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\"\n}\n
"
}
]
@@ -64482,33 +64482,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -64637,33 +64637,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -64816,18 +64816,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"draft\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -65044,18 +65044,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -65194,7 +65194,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n }\n]\n
"
}
]
@@ -65285,13 +65285,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -65414,7 +65414,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
}
]
@@ -65487,20 +65487,20 @@
"subcategory": "comments",
"subcategoryLabel": "Comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a review comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a review comment.
"
+ ]
},
{
"verb": "get",
@@ -65620,13 +65620,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -65766,19 +65766,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -65863,15 +65863,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/pulls/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a pull request review comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/pulls/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a pull request review comment.
"
+ ]
},
{
"verb": "get",
@@ -65944,23 +65944,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Pass the appropriate [media type](https://docs.github.com/enterprise-server@3.0/rest/overview/media-types/#commits-commit-comparison-and-pull-requests) to fetch diff and patch formats.",
+ "description": "Pass the appropriate media type to fetch diff and patch formats.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -66153,18 +66153,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -66313,7 +66313,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n }\n]\n
"
}
]
@@ -66622,18 +66622,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -66759,13 +66759,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 426899381,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -66860,7 +66860,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n]\n
"
}
]
@@ -66956,18 +66956,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"sha\": \"bbcd538c8e72b8c175046e27cc8f907076331401\",\n \"filename\": \"file1.txt\",\n \"status\": \"added\",\n \"additions\": 103,\n \"deletions\": 21,\n \"changes\": 124,\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/file1.txt?ref=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"patch\": \"@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -67037,19 +67037,19 @@
"categoryLabel": "Pulls",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if pull request has been merged"
+ "description": "Response if pull request has been merged
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if pull request has not been merged"
+ "description": "Not Found if pull request has not been merged
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -67220,35 +67220,35 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if merge was successful",
+ "description": "if merge was successful
",
"payload": "{\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "405",
"httpStatusMessage": "Method Not Allowed",
- "description": "Method Not Allowed if merge cannot be performed",
+ "description": "Method Not Allowed if merge cannot be performed
",
"payload": "{\n \"message\": \"Pull Request is not mergeable\"\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict if sha was provided and pull request head did not match",
+ "description": "Conflict if sha was provided and pull request head did not match
",
"payload": "{\n \"message\": \"Head branch was modified. Review and try the merge again.\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -67345,7 +67345,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n}\n
"
}
]
@@ -67508,18 +67508,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"draft\": false\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if user is not a collaborator"
+ "description": "Unprocessable Entity if user is not a collaborator
"
}
]
},
@@ -67645,12 +67645,12 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -67773,7 +67773,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The list of reviews returns in chronological order.",
+ "description": "The list of reviews returns in chronological order.
",
"payload": "[\n {\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -68060,18 +68060,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -68344,13 +68344,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -68475,13 +68475,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change. And add more about this.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -68568,18 +68568,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -68686,13 +68686,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -68832,18 +68832,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"DISMISSED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -68993,23 +68993,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69126,18 +69126,18 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"message\": \"Updating pull request branch.\",\n \"url\": \"https://github.com/repos/octocat/Hello-World/pulls/53\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69215,18 +69215,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"file\",\n \"encoding\": \"base64\",\n \"size\": 5362,\n \"name\": \"README.md\",\n \"path\": \"README.md\",\n \"content\": \"encoded content ...\",\n \"sha\": \"3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"git_url\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"html_url\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\",\n \"download_url\": \"https://raw.githubusercontent.com/octokit/octokit.rb/master/README.md\",\n \"_links\": {\n \"git\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"self\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"html\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69315,18 +69315,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"file\",\n \"encoding\": \"base64\",\n \"size\": 5362,\n \"name\": \"README.md\",\n \"path\": \"README.md\",\n \"content\": \"encoded content ...\",\n \"sha\": \"3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"git_url\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"html_url\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\",\n \"download_url\": \"https://raw.githubusercontent.com/octokit/octokit.rb/master/README.md\",\n \"_links\": {\n \"git\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"self\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"html\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69412,13 +69412,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -69622,13 +69622,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69706,23 +69706,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "To download the asset's binary content, set the `Accept` header of the request to [`application/octet-stream`](https://docs.github.com/enterprise-server@3.0/rest/overview/media-types). The API will either redirect the client to the location, or stream it directly if possible. API clients should handle both a `200` or `302` response.",
+ "description": "To download the asset's binary content, set the Accept header of the request to application/octet-stream. The API will either redirect the client to the location, or stream it directly if possible. API clients should handle both a 200 or 302 response.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Found"
+ "description": "Found
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -69872,7 +69872,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -69946,14 +69946,14 @@
"subcategoryLabel": "Assets",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -70017,7 +70017,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
}
]
@@ -70095,13 +70095,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -70177,13 +70177,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "**Note:** This returns an `upload_url` key corresponding to the endpoint for uploading release assets. This key is a [hypermedia resource](https://docs.github.com/enterprise-server@3.0/rest/overview/resources-in-the-rest-api#hypermedia).",
+ "description": "Note: This returns an upload_url key corresponding to the endpoint for uploading release assets. This key is a hypermedia resource.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -70389,7 +70389,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
}
]
@@ -70460,15 +70460,15 @@
"category": "releases",
"categoryLabel": "Releases",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Users with push access to the repository can delete a release.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Users with push access to the repository can delete a release.
"
+ ]
},
{
"verb": "get",
@@ -70564,7 +70564,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
}
]
@@ -70683,13 +70683,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response for successful upload",
+ "description": "Response for successful upload
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Response if you upload an asset with the same filename as another uploaded asset"
+ "description": "Response if you upload an asset with the same filename as another uploaded asset
"
}
]
},
@@ -70789,7 +70789,7 @@
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -70857,18 +70857,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Returns a weekly aggregate of the number of additions and deletions pushed to a repository.",
+ "description": "Returns a weekly aggregate of the number of additions and deletions pushed to a repository.
",
"payload": "[\n [\n 1302998400,\n 1124,\n -435\n ]\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -70936,18 +70936,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"days\": [\n 0,\n 3,\n 26,\n 20,\n 39,\n 1,\n 0\n ],\n \"total\": 89,\n \"week\": 1336280400\n }\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -71015,18 +71015,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "* `w` - Start of the week, given as a [Unix timestamp](http://en.wikipedia.org/wiki/Unix_time).\n* `a` - Number of additions\n* `d` - Number of deletions\n* `c` - Number of commits",
+ "description": "\nw - Start of the week, given as a Unix timestamp. \na - Number of additions \nd - Number of deletions \nc - Number of commits \n
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"total\": 135,\n \"weeks\": [\n {\n \"w\": 1367712000,\n \"a\": 6898,\n \"d\": 77,\n \"c\": 10\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -71094,13 +71094,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The array order is oldest week (index 0) to most recent week.",
+ "description": "The array order is oldest week (index 0) to most recent week.
",
"payload": "{\n \"all\": [\n 11,\n 21,\n 15,\n 2,\n 8,\n 1,\n 8,\n 23,\n 17,\n 21,\n 11,\n 10,\n 33,\n 91,\n 38,\n 34,\n 22,\n 23,\n 32,\n 3,\n 43,\n 87,\n 71,\n 18,\n 13,\n 5,\n 13,\n 16,\n 66,\n 27,\n 12,\n 45,\n 110,\n 117,\n 13,\n 8,\n 18,\n 9,\n 19,\n 26,\n 39,\n 12,\n 20,\n 31,\n 46,\n 91,\n 45,\n 10,\n 24,\n 9,\n 29,\n 7\n ],\n \"owner\": [\n 3,\n 2,\n 3,\n 0,\n 2,\n 0,\n 5,\n 14,\n 7,\n 9,\n 1,\n 5,\n 0,\n 48,\n 19,\n 2,\n 0,\n 1,\n 10,\n 2,\n 23,\n 40,\n 35,\n 8,\n 8,\n 2,\n 10,\n 6,\n 30,\n 0,\n 2,\n 9,\n 53,\n 104,\n 3,\n 3,\n 10,\n 4,\n 7,\n 11,\n 21,\n 4,\n 4,\n 22,\n 26,\n 63,\n 11,\n 2,\n 14,\n 1,\n 10,\n 3\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -71168,13 +71168,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "For example, `[2, 14, 25]` indicates that there were 25 total commits, during the 2:00pm hour on Tuesdays. All times are based on the time zone of individual commits.",
+ "description": "For example, [2, 14, 25] indicates that there were 25 total commits, during the 2:00pm hour on Tuesdays. All times are based on the time zone of individual commits.
",
"payload": "[\n [\n 0,\n 0,\n 5\n ],\n [\n 0,\n 1,\n 43\n ],\n [\n 0,\n 2,\n 21\n ]\n]\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -71361,7 +71361,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -71450,7 +71450,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -71519,18 +71519,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if you subscribe to the repository",
+ "description": "if you subscribe to the repository
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/repos/octocat/example/subscription\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if you don't subscribe to the repository"
+ "description": "Not Found if you don't subscribe to the repository
"
}
]
},
@@ -71648,7 +71648,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/repos/octocat/example/subscription\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\"\n}\n
"
}
]
@@ -71711,15 +71711,15 @@
"subcategory": "watching",
"subcategoryLabel": "Watching",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This endpoint should only be used to stop watching a repository. To control whether or not you wish to receive notifications from a repository, set the repository's subscription manually.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This endpoint should only be used to stop watching a repository. To control whether or not you wish to receive notifications from a repository, set the repository's subscription manually.
"
+ ]
},
{
"verb": "get",
@@ -71803,7 +71803,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"v0.1\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"zipball_url\": \"https://github.com/octocat/Hello-World/zipball/v0.1\",\n \"tarball_url\": \"https://github.com/octocat/Hello-World/tarball/v0.1\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
}
]
@@ -71875,15 +71875,15 @@
"subcategory": "contents",
"subcategoryLabel": "Contents",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a tar archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a tar archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
"
+ ]
},
{
"verb": "get",
@@ -71967,7 +71967,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
}
]
@@ -72060,18 +72060,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"names\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -72192,23 +72192,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"names\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -72340,7 +72340,7 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n}\n
"
}
]
@@ -72412,15 +72412,15 @@
"subcategory": "contents",
"subcategoryLabel": "Contents",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a zip archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a zip archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
"
+ ]
},
{
"verb": "post",
@@ -72608,7 +72608,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"template_repository\": {}\n}\n
"
}
]
@@ -72683,18 +72683,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -72800,28 +72800,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 7,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"name\": \"classes.js\",\n \"path\": \"src/attributes/classes.js\",\n \"sha\": \"d7212f9dee2dcc18f084d7df8f417b80846ded5a\",\n \"url\": \"https://api.github.com/repositories/167174/contents/src/attributes/classes.js?ref=825ac3773694e0cd23ee74895fd5aeb535b27da4\",\n \"git_url\": \"https://api.github.com/repositories/167174/git/blobs/d7212f9dee2dcc18f084d7df8f417b80846ded5a\",\n \"html_url\": \"https://github.com/jquery/jquery/blob/825ac3773694e0cd23ee74895fd5aeb535b27da4/src/attributes/classes.js\",\n \"repository\": {\n \"id\": 167174,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxNjcxNzQ=\",\n \"name\": \"jquery\",\n \"full_name\": \"jquery/jquery\",\n \"owner\": {\n \"login\": \"jquery\",\n \"id\": 70142,\n \"node_id\": \"MDQ6VXNlcjcwMTQy\",\n \"avatar_url\": \"https://0.gravatar.com/avatar/6906f317a4733f4379b06c32229ef02f?d=https%3A%2F%2Fidenticons.github.com%2Ff426f04f2f9813718fb806b30e0093de.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/jquery\",\n \"html_url\": \"https://github.com/jquery\",\n \"followers_url\": \"https://api.github.com/users/jquery/followers\",\n \"following_url\": \"https://api.github.com/users/jquery/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/jquery/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/jquery/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/jquery/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/jquery/orgs\",\n \"repos_url\": \"https://api.github.com/users/jquery/repos\",\n \"events_url\": \"https://api.github.com/users/jquery/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/jquery/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/jquery/jquery\",\n \"description\": \"jQuery JavaScript Library\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/jquery/jquery\",\n \"forks_url\": \"https://api.github.com/repos/jquery/jquery/forks\",\n \"keys_url\": \"https://api.github.com/repos/jquery/jquery/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/jquery/jquery/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/jquery/jquery/teams\",\n \"hooks_url\": \"https://api.github.com/repos/jquery/jquery/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/jquery/jquery/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/jquery/jquery/events\",\n \"assignees_url\": \"https://api.github.com/repos/jquery/jquery/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/jquery/jquery/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/jquery/jquery/tags\",\n \"blobs_url\": \"https://api.github.com/repos/jquery/jquery/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/jquery/jquery/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/jquery/jquery/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/jquery/jquery/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/jquery/jquery/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/jquery/jquery/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/jquery/jquery/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/jquery/jquery/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/jquery/jquery/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/jquery/jquery/subscription\",\n \"commits_url\": \"https://api.github.com/repos/jquery/jquery/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/jquery/jquery/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/jquery/jquery/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/jquery/jquery/issues/comments/{number}\",\n \"contents_url\": \"https://api.github.com/repos/jquery/jquery/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/jquery/jquery/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/jquery/jquery/merges\",\n \"archive_url\": \"https://api.github.com/repos/jquery/jquery/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/jquery/jquery/downloads\",\n \"issues_url\": \"https://api.github.com/repos/jquery/jquery/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/jquery/jquery/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/jquery/jquery/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/jquery/jquery/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/jquery/jquery/labels{/name}\",\n \"deployments_url\": \"http://api.github.com/repos/octocat/Hello-World/deployments\",\n \"releases_url\": \"http://api.github.com/repos/octocat/Hello-World/releases{/id}\"\n },\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -72934,13 +72934,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"sha\": \"bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"html_url\": \"https://github.com/octocat/Spoon-Knife/commit/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"author\": {\n \"date\": \"2014-02-04T14:38:36-08:00\",\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"date\": \"2014-02-12T15:18:55-08:00\",\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"message\": \"Create styles.css and updated README\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/trees/a639e96f9038797fba6e0469f94a4b0cc459fa68\",\n \"sha\": \"a639e96f9038797fba6e0469f94a4b0cc459fa68\"\n },\n \"comment_count\": 8\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 583231,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/583231?v=3\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {},\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/a30c19e3f13765a3b48829788bc1cb8b4e95cee4\",\n \"html_url\": \"https://github.com/octocat/Spoon-Knife/commit/a30c19e3f13765a3b48829788bc1cb8b4e95cee4\",\n \"sha\": \"a30c19e3f13765a3b48829788bc1cb8b4e95cee4\"\n }\n ],\n \"repository\": {\n \"id\": 1300192,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMzAwMTky\",\n \"name\": \"Spoon-Knife\",\n \"full_name\": \"octocat/Spoon-Knife\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 583231,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/583231?v=3\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Spoon-Knife\",\n \"description\": \"This repo is for demonstration purposes only.\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/forks\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/events\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/merges\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/deployments\"\n },\n \"score\": 1,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -73056,28 +73056,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 280,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132\",\n \"repository_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit\",\n \"labels_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/comments\",\n \"events_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/events\",\n \"html_url\": \"https://github.com/batterseapower/pinyin-toolkit/issues/132\",\n \"id\": 35802,\n \"node_id\": \"MDU6SXNzdWUzNTgwMg==\",\n \"number\": 132,\n \"title\": \"Line Number Indexes Beyond 20 Not Displayed\",\n \"user\": {\n \"login\": \"Nick3C\",\n \"id\": 90254,\n \"node_id\": \"MDQ6VXNlcjkwMjU0\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/934442aadfe3b2f4630510de416c5718?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Nick3C\",\n \"html_url\": \"https://github.com/Nick3C\",\n \"followers_url\": \"https://api.github.com/users/Nick3C/followers\",\n \"following_url\": \"https://api.github.com/users/Nick3C/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Nick3C/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Nick3C/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Nick3C/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Nick3C/orgs\",\n \"repos_url\": \"https://api.github.com/users/Nick3C/repos\",\n \"events_url\": \"https://api.github.com/users/Nick3C/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Nick3C/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"labels\": [\n {\n \"id\": 4,\n \"node_id\": \"MDU6TGFiZWw0\",\n \"url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/labels/bug\",\n \"name\": \"bug\",\n \"color\": \"ff0000\"\n }\n ],\n \"state\": \"open\",\n \"assignee\": null,\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"comments\": 15,\n \"created_at\": \"2009-07-12T20:10:41Z\",\n \"updated_at\": \"2009-07-19T09:23:43Z\",\n \"closed_at\": null,\n \"pull_request\": {\n \"url\": \"https://api/github.com/repos/octocat/Hello-World/pull/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"body\": \"...\",\n \"score\": 1,\n \"locked\": true,\n \"author_association\": \"COLLABORATOR\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -73194,28 +73194,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"id\": 418327088,\n \"node_id\": \"MDU6TGFiZWw0MTgzMjcwODg=\",\n \"url\": \"https://api.github.com/repos/octocat/linguist/labels/enhancement\",\n \"name\": \"enhancement\",\n \"color\": \"84b6eb\",\n \"default\": true,\n \"description\": \"New feature or request.\",\n \"score\": 1\n },\n {\n \"id\": 418327086,\n \"node_id\": \"MDU6TGFiZWw0MTgzMjcwODY=\",\n \"url\": \"https://api.github.com/repos/octocat/linguist/labels/bug\",\n \"name\": \"bug\",\n \"color\": \"ee0701\",\n \"default\": true,\n \"description\": \"Something isn't working.\",\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -73330,23 +73330,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 40,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"id\": 3081286,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkzMDgxMjg2\",\n \"name\": \"Tetris\",\n \"full_name\": \"dtrupenn/Tetris\",\n \"owner\": {\n \"login\": \"dtrupenn\",\n \"id\": 872147,\n \"node_id\": \"MDQ6VXNlcjg3MjE0Nw==\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/e7956084e75f239de85d3a31bc172ace?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/dtrupenn\",\n \"received_events_url\": \"https://api.github.com/users/dtrupenn/received_events\",\n \"type\": \"User\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"site_admin\": true\n },\n \"private\": false,\n \"html_url\": \"https://github.com/dtrupenn/Tetris\",\n \"description\": \"A C implementation of Tetris using Pennsim through LC4\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/dtrupenn/Tetris\",\n \"created_at\": \"2012-01-01T00:31:50Z\",\n \"updated_at\": \"2013-01-05T17:58:47Z\",\n \"pushed_at\": \"2012-01-01T00:37:02Z\",\n \"homepage\": \"https://github.com\",\n \"size\": 524,\n \"stargazers_count\": 1,\n \"watchers_count\": 1,\n \"language\": \"Assembly\",\n \"forks_count\": 0,\n \"open_issues_count\": 0,\n \"master_branch\": \"master\",\n \"default_branch\": \"master\",\n \"score\": 1,\n \"archive_url\": \"https://api.github.com/repos/dtrupenn/Tetris/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/dtrupenn/Tetris/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/dtrupenn/Tetris/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/dtrupenn/Tetris/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/dtrupenn/Tetris/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/dtrupenn/Tetris/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/dtrupenn/Tetris/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/dtrupenn/Tetris/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/dtrupenn/Tetris/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/dtrupenn/Tetris/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/dtrupenn/Tetris/downloads\",\n \"events_url\": \"https://api.github.com/repos/dtrupenn/Tetris/events\",\n \"forks_url\": \"https://api.github.com/repos/dtrupenn/Tetris/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/tags{/sha}\",\n \"git_url\": \"git:github.com/dtrupenn/Tetris.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/dtrupenn/Tetris/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/dtrupenn/Tetris/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/dtrupenn/Tetris/languages\",\n \"merges_url\": \"https://api.github.com/repos/dtrupenn/Tetris/merges\",\n \"milestones_url\": \"https://api.github.com/repos/dtrupenn/Tetris/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/dtrupenn/Tetris/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/dtrupenn/Tetris/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/dtrupenn/Tetris/releases{/id}\",\n \"ssh_url\": \"git@github.com:dtrupenn/Tetris.git\",\n \"stargazers_url\": \"https://api.github.com/repos/dtrupenn/Tetris/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/dtrupenn/Tetris/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/dtrupenn/Tetris/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/dtrupenn/Tetris/subscription\",\n \"tags_url\": \"https://api.github.com/repos/dtrupenn/Tetris/tags\",\n \"teams_url\": \"https://api.github.com/repos/dtrupenn/Tetris/teams\",\n \"trees_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/dtrupenn/Tetris.git\",\n \"mirror_url\": \"git:git.example.com/dtrupenn/Tetris\",\n \"hooks_url\": \"https://api.github.com/repos/dtrupenn/Tetris/hooks\",\n \"svn_url\": \"https://svn.github.com/dtrupenn/Tetris\",\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1,\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_pages\": true,\n \"has_wiki\": true,\n \"has_downloads\": true,\n \"archived\": true,\n \"disabled\": true,\n \"visibility\": \"private\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -73430,18 +73430,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 6,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"name\": \"ruby\",\n \"display_name\": \"Ruby\",\n \"short_description\": \"Ruby is a scripting language designed for simplified object-oriented programming.\",\n \"description\": \"Ruby was developed by Yukihiro \\\"Matz\\\" Matsumoto in 1995 with the intent of having an easily readable programming language. It is integrated with the Rails framework to create dynamic web-applications. Ruby's syntax is similar to that of Perl and Python.\",\n \"created_by\": \"Yukihiro Matsumoto\",\n \"released\": \"December 21, 1995\",\n \"created_at\": \"2016-11-28T22:03:59Z\",\n \"updated_at\": \"2017-10-30T18:16:32Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"rails\",\n \"display_name\": \"Rails\",\n \"short_description\": \"Ruby on Rails (Rails) is a web application framework written in Ruby.\",\n \"description\": \"Ruby on Rails (Rails) is a web application framework written in Ruby. It is meant to help simplify the building of complex websites.\",\n \"created_by\": \"David Heinemeier Hansson\",\n \"released\": \"December 13 2005\",\n \"created_at\": \"2016-12-09T17:03:50Z\",\n \"updated_at\": \"2017-10-30T16:20:19Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"python\",\n \"display_name\": \"Python\",\n \"short_description\": \"Python is a dynamically typed programming language.\",\n \"description\": \"Python is a dynamically typed programming language designed by Guido Van Rossum. Much like the programming language Ruby, Python was designed to be easily read by programmers. Because of its large following and many libraries, Python can be implemented and used to do anything from webpages to scientific research.\",\n \"created_by\": \"Guido van Rossum\",\n \"released\": \"February 20, 1991\",\n \"created_at\": \"2016-12-07T00:07:02Z\",\n \"updated_at\": \"2017-10-27T22:45:43Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"jekyll\",\n \"display_name\": \"Jekyll\",\n \"short_description\": \"Jekyll is a simple, blog-aware static site generator.\",\n \"description\": \"Jekyll is a blog-aware, site generator written in Ruby. It takes raw text files, runs it through a renderer and produces a publishable static website.\",\n \"created_by\": \"Tom Preston-Werner\",\n \"released\": \"2008\",\n \"created_at\": \"2016-12-16T21:53:08Z\",\n \"updated_at\": \"2017-10-27T19:00:24Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"sass\",\n \"display_name\": \"Sass\",\n \"short_description\": \"Sass is a stable extension to classic CSS.\",\n \"description\": \"Sass is a stylesheet language with a main implementation in Ruby. It is an extension of CSS that makes improvements to the old stylesheet format, such as being able to declare variables and using a cleaner nesting syntax.\",\n \"created_by\": \"Hampton Catlin, Natalie Weizenbaum, Chris Eppstein\",\n \"released\": \"November 28, 2006\",\n \"created_at\": \"2016-12-16T21:53:45Z\",\n \"updated_at\": \"2018-01-16T16:30:40Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"homebrew\",\n \"display_name\": \"Homebrew\",\n \"short_description\": \"Homebrew is a package manager for macOS.\",\n \"description\": \"Homebrew is a package manager for Apple's macOS operating system. It simplifies the installation of software and is popular in the Ruby on Rails community.\",\n \"created_by\": \"Max Howell\",\n \"released\": \"2009\",\n \"created_at\": \"2016-12-17T20:30:44Z\",\n \"updated_at\": \"2018-02-06T16:14:56Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -73549,23 +73549,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 12,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"login\": \"mojombo\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/mojombo\",\n \"html_url\": \"https://github.com/mojombo\",\n \"followers_url\": \"https://api.github.com/users/mojombo/followers\",\n \"subscriptions_url\": \"https://api.github.com/users/mojombo/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/mojombo/orgs\",\n \"repos_url\": \"https://api.github.com/users/mojombo/repos\",\n \"received_events_url\": \"https://api.github.com/users/mojombo/received_events\",\n \"type\": \"User\",\n \"score\": 1,\n \"following_url\": \"https://api.github.com/users/mojombo/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/mojombo/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/mojombo/starred{/owner}{/repo}\",\n \"events_url\": \"https://api.github.com/users/mojombo/events{/privacy}\",\n \"site_admin\": true\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -73614,7 +73614,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"running\",\n \"progress\": [\n {\n \"status\": \"DONE\",\n \"key\": \"Appliance core components\"\n },\n {\n \"status\": \"DONE\",\n \"key\": \"GitHub utilities\"\n },\n {\n \"status\": \"DONE\",\n \"key\": \"GitHub applications\"\n },\n {\n \"status\": \"CONFIGURING\",\n \"key\": \"GitHub services\"\n },\n {\n \"status\": \"PENDING\",\n \"key\": \"Reloading appliance services\"\n }\n ]\n}\n
"
}
]
@@ -73658,15 +73658,15 @@
"subcategory": "management-console",
"subcategoryLabel": "Management console",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This endpoint allows you to start a configuration process at any time for your updated settings to take effect:
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This endpoint allows you to start a configuration process at any time for your updated settings to take effect:
"
+ ]
},
{
"verb": "get",
@@ -73713,7 +73713,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"scheduled\",\n \"scheduled_time\": \"Tuesday, January 22 at 15:34 -0800\",\n \"connection_services\": [\n {\n \"name\": \"git operations\",\n \"number\": 0\n },\n {\n \"name\": \"mysql queries\",\n \"number\": 233\n },\n {\n \"name\": \"resque jobs\",\n \"number\": 54\n }\n ]\n}\n
"
}
]
@@ -73801,7 +73801,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"scheduled\",\n \"scheduled_time\": \"Tuesday, January 22 at 15:34 -0800\",\n \"connection_services\": [\n {\n \"name\": \"git operations\",\n \"number\": 0\n },\n {\n \"name\": \"mysql queries\",\n \"number\": 233\n },\n {\n \"name\": \"resque jobs\",\n \"number\": 54\n }\n ]\n}\n
"
}
]
@@ -73851,7 +73851,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enterprise\": {\n \"private_mode\": false,\n \"public_pages\": false,\n \"subdomain_isolation\": true,\n \"signup_enabled\": false,\n \"github_hostname\": \"ghe.local\",\n \"identicons_host\": \"dotcom\",\n \"http_proxy\": null,\n \"auth_mode\": \"default\",\n \"expire_sessions\": false,\n \"admin_password\": null,\n \"configuration_id\": 1401777404,\n \"configuration_run_count\": 4,\n \"avatar\": {\n \"enabled\": false,\n \"uri\": \"\"\n },\n \"customer\": {\n \"name\": \"GitHub\",\n \"email\": \"stannis@themannis.biz\",\n \"uuid\": \"af6cac80-e4e1-012e-d822-1231380e52e9\",\n \"secret_key_data\": \"-----BEGIN PGP PRIVATE KEY BLOCK-----\\nVersion: GnuPG v1.4.10 (GNU/Linux)\\n\\nlQcYBE5TCgsBEACk4yHpUcapplebaumBMXYMiLF+nCQ0lxpx...\\n-----END PGP PRIVATE KEY BLOCK-----\\n\",\n \"public_key_data\": \"-----BEGIN PGP PUBLIC KEY BLOCK-----\\nVersion: GnuPG v1.4.10 (GNU/Linux)\\n\\nmI0ETqzZYgEEALSe6snowdenXyqvLfSQ34HWD6C7....\\n-----END PGP PUBLIC KEY BLOCK-----\\n\"\n },\n \"license\": {\n \"seats\": 0,\n \"evaluation\": false,\n \"perpetual\": false,\n \"unlimited_seating\": true,\n \"support_key\": \"ssh-rsa AAAAB3N....\",\n \"ssh_allowed\": true,\n \"cluster_support\": false,\n \"expire_at\": \"2016-04-27T00:00:00-07:00\"\n },\n \"github_ssl\": {\n \"enabled\": false,\n \"cert\": null,\n \"key\": null\n },\n \"ldap\": {\n \"host\": null,\n \"port\": 0,\n \"base\": [],\n \"uid\": null,\n \"bind_dn\": null,\n \"password\": null,\n \"method\": \"Plain\",\n \"search_strategy\": \"detect\",\n \"user_groups\": [],\n \"admin_group\": null,\n \"virtual_attribute_enabled\": false,\n \"recursive_group_search\": false,\n \"posix_support\": true,\n \"user_sync_emails\": false,\n \"user_sync_keys\": false,\n \"user_sync_interval\": 4,\n \"team_sync_interval\": 4,\n \"sync_enabled\": false,\n \"reconciliation\": {\n \"user\": null,\n \"org\": null\n },\n \"profile\": {\n \"uid\": \"uid\",\n \"name\": null,\n \"mail\": null,\n \"key\": null\n }\n },\n \"cas\": {\n \"url\": null\n },\n \"saml\": {\n \"sso_url\": null,\n \"certificate\": null,\n \"certificate_path\": null,\n \"issuer\": null,\n \"idp_initiated_sso\": false,\n \"disable_admin_demote\": false\n },\n \"github_oauth\": {\n \"client_id\": \"12313412\",\n \"client_secret\": \"kj123131132\",\n \"organization_name\": \"Homestar Runners\",\n \"organization_team\": \"homestarrunners/characters\"\n },\n \"smtp\": {\n \"enabled\": true,\n \"address\": \"smtp.example.com\",\n \"authentication\": \"plain\",\n \"port\": \"1234\",\n \"domain\": \"blah\",\n \"username\": \"foo\",\n \"user_name\": \"mr_foo\",\n \"enable_starttls_auto\": true,\n \"password\": \"bar\",\n \"discard-to-noreply-address\": true,\n \"support_address\": \"enterprise@github.com\",\n \"support_address_type\": \"email\",\n \"noreply_address\": \"noreply@github.com\"\n },\n \"ntp\": {\n \"primary_server\": \"0.pool.ntp.org\",\n \"secondary_server\": \"1.pool.ntp.org\"\n },\n \"timezone\": null,\n \"snmp\": {\n \"enabled\": false,\n \"community\": \"\"\n },\n \"syslog\": {\n \"enabled\": false,\n \"server\": null,\n \"protocol_name\": \"udp\"\n },\n \"assets\": null,\n \"pages\": {\n \"enabled\": true\n },\n \"collectd\": {\n \"enabled\": false,\n \"server\": null,\n \"port\": 0,\n \"encryption\": null,\n \"username\": null,\n \"password\": null\n },\n \"mapping\": {\n \"enabled\": true,\n \"tileserver\": null,\n \"basemap\": \"company.map-qsz2zrvs\",\n \"token\": null\n },\n \"load_balancer\": null\n },\n \"run_list\": [\n \"recipe[enterprise-configure]\"\n ]\n}\n
"
}
]
@@ -73923,14 +73923,14 @@
"subcategoryLabel": "Management console",
"contentType": "application/x-www-form-urlencoded",
"notes": [],
+ "descriptionHTML": "For a list of the available settings, see the Get settings endpoint.
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "For a list of the available settings, see the Get settings endpoint.
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"bodyParameters": [
{
"type": "string",
@@ -73988,7 +73988,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n }\n]\n
"
}
]
@@ -74076,7 +74076,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n }\n]\n
"
}
]
@@ -74164,7 +74164,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n }\n]\n
"
}
]
@@ -74251,14 +74251,14 @@
"subcategoryLabel": "Management console",
"contentType": "application/x-www-form-urlencoded",
"notes": [],
+ "descriptionHTML": "When you boot a GitHub instance for the first time, you can use the following endpoint to upload a license.
\nNote that you need to POST to /setup/api/configure to start the actual configuration process.
\nWhen using this endpoint, your GitHub instance must have a password set. This can be accomplished two ways:
\n\n- If you're working directly with the API before accessing the web interface, you must pass in the password parameter to set your password.
\n- If you set up your instance via the web interface before accessing the API, your calls to this endpoint do not need the password parameter.
\n
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "When you boot a GitHub instance for the first time, you can use the following endpoint to upload a license.
\nNote that you need to POST to /setup/api/configure to start the actual configuration process.
\nWhen using this endpoint, your GitHub instance must have a password set. This can be accomplished two ways:
\n\n- If you're working directly with the API before accessing the web interface, you must pass in the password parameter to set your password.
\n- If you set up your instance via the web interface before accessing the API, your calls to this endpoint do not need the password parameter.
\n
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"bodyParameters": [
{
"type": "string",
@@ -74349,14 +74349,14 @@
"subcategoryLabel": "Management console",
"contentType": "application/x-www-form-urlencoded",
"notes": [],
+ "descriptionHTML": "This API upgrades your license and also triggers the configuration process.
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "This API upgrades your license and also triggers the configuration process.
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"bodyParameters": [
{
"type": "string",
@@ -74425,13 +74425,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -74625,29 +74625,29 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -74701,25 +74701,25 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a team endpoint.
\nTo delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a team endpoint.
\nTo delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
"
+ ]
},
{
"verb": "get",
@@ -74821,7 +74821,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -74970,7 +74970,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -75049,7 +75049,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -75181,7 +75181,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 1,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Welcome to our first team post\",\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -75247,15 +75247,15 @@
"subcategory": "discussions",
"subcategoryLabel": "Discussions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion endpoint.
\nDelete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion endpoint.
\nDelete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -75366,7 +75366,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -75484,7 +75484,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -75572,7 +75572,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -75698,7 +75698,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like pineapples?\",\n \"body_html\": \"<p>Do you like pineapples?</p>\",\n \"body_version\": \"e6907b24d9c93cc0c5024a7af5888116\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -75773,15 +75773,15 @@
"subcategory": "discussion-comments",
"subcategoryLabel": "Discussion comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion comment endpoint.
\nDeletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion comment endpoint.
\nDeletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -75903,7 +75903,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -76046,7 +76046,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -76162,7 +76162,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -76296,7 +76296,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -76395,13 +76395,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -76466,20 +76466,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Get team member\" endpoint (described below) is deprecated.
\nWe recommend using the Get team membership for a user endpoint instead. It allows you to get both active and pending memberships.
\nTo list members in a team, the team must be visible to the authenticated user.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if user is a member"
+ "description": "if user is a member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if user is not a member"
+ "description": "if user is not a member
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Get team member\" endpoint (described below) is deprecated.
\nWe recommend using the Get team membership for a user endpoint instead. It allows you to get both active and pending memberships.
\nTo list members in a team, the team must be visible to the authenticated user.
"
+ ]
},
{
"verb": "put",
@@ -76542,30 +76542,30 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Add team member\" endpoint (described below) is deprecated.
\nWe recommend using the Add or update team membership for a user endpoint instead. It allows you to invite new organization members to your teams.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo add someone to a team, the authenticated user must be an organization owner or a team maintainer in the team they're changing. The person being added to the team must be a member of the team's organization.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team synchronization is set up"
+ "description": "Not Found if team synchronization is set up
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team or you attempt to add a user to a team when they are not a member of at least one other team in the same organization"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team or you attempt to add a user to a team when they are not a member of at least one other team in the same organization
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Add team member\" endpoint (described below) is deprecated.
\nWe recommend using the Add or update team membership for a user endpoint instead. It allows you to invite new organization members to your teams.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo add someone to a team, the authenticated user must be an organization owner or a team maintainer in the team they're changing. The person being added to the team must be a member of the team's organization.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -76628,20 +76628,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Remove team member\" endpoint (described below) is deprecated.
\nWe recommend using the Remove team membership for a user endpoint instead. It allows you to remove both active and pending memberships.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a team member, the authenticated user must have 'admin' permissions to the team or be an owner of the org that the team is associated with. Removing a team member does not delete the user, it just removes them from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team synchronization is setup"
+ "description": "Not Found if team synchronization is setup
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Remove team member\" endpoint (described below) is deprecated.
\nWe recommend using the Remove team membership for a user endpoint instead. It allows you to remove both active and pending memberships.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a team member, the authenticated user must have 'admin' permissions to the team or be an owner of the org that the team is associated with. Removing a team member does not delete the user, it just removes them from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
"
+ ]
},
{
"verb": "get",
@@ -76716,7 +76716,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -76835,17 +76835,17 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team
"
}
]
},
@@ -76910,20 +76910,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove team membership for a user endpoint.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "if team synchronization is set up"
+ "description": "if team synchronization is set up
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove team membership for a user endpoint.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
"
+ ]
},
{
"verb": "get",
@@ -77007,13 +77007,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -77088,13 +77088,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if project is not managed by this team"
+ "description": "Not Found if project is not managed by this team
"
}
]
},
@@ -77211,23 +77211,23 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if the project is not owned by the organization",
+ "description": "Forbidden if the project is not owned by the organization
",
"payload": "{\n \"message\": \"Must have admin rights to Repository.\",\n \"documentation_url\": \"https://docs.github.com/enterprise-server@3.0/rest/reference/teams#add-or-update-team-project-permissions\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -77290,30 +77290,30 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a project from a team endpoint.
\nRemoves an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. Note: This endpoint removes the project from the team, but does not delete it.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a project from a team endpoint.
\nRemoves an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. Note: This endpoint removes the project from the team, but does not delete it.
"
+ ]
},
{
"verb": "get",
@@ -77391,13 +77391,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -77475,18 +77475,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Alternative response with extra repository information",
+ "description": "Alternative response with extra repository information
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"maintain\": false,\n \"push\": false,\n \"triage\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"triage\": false,\n \"push\": false,\n \"maintain\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if repository is managed by this team"
+ "description": "Response if repository is managed by this team
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if repository is not managed by this team"
+ "description": "Not Found if repository is not managed by this team
"
}
]
},
@@ -77585,24 +77585,24 @@
"categoryLabel": "Teams",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new \"Add or update team repository permissions\" endpoint.
\nTo add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new \"Add or update team repository permissions\" endpoint.
\nTo add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -77688,15 +77688,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a repository from a team endpoint.
\nIf the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. NOTE: This does not delete the repository, it just removes it from the team.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a repository from a team endpoint.
\nIf the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. NOTE: This does not delete the repository, it just removes it from the team.
"
+ ]
},
{
"verb": "get",
@@ -77774,23 +77774,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if child teams exist",
+ "description": "if child teams exist
",
"payload": "[\n {\n \"id\": 2,\n \"node_id\": \"MDQ6VGVhbTI=\",\n \"url\": \"https://api.github.com/teams/2\",\n \"name\": \"Original Roster\",\n \"slug\": \"original-roster\",\n \"description\": \"Started it all.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/2/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/2/repos\",\n \"parent\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n },\n \"html_url\": \"https://github.com/orgs/rails/teams/core\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -77849,17 +77849,17 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -78078,33 +78078,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"name\": \"monalisa octocat\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"hireable\": false,\n \"bio\": \"There once was...\",\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2008-01-14T04:33:35Z\",\n \"private_gists\": 81,\n \"total_private_repos\": 100,\n \"owned_private_repos\": 100,\n \"disk_usage\": 10000,\n \"collaborators\": 8,\n \"two_factor_authentication\": true,\n \"plan\": {\n \"name\": \"Medium\",\n \"space\": 400,\n \"private_repos\": 20,\n \"collaborators\": 0\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -78174,28 +78174,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"email\": \"octocat@github.com\",\n \"verified\": true,\n \"primary\": true,\n \"visibility\": \"public\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -78312,33 +78312,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"email\": \"octocat@octocat.org\",\n \"primary\": false,\n \"verified\": false,\n \"visibility\": \"public\"\n },\n {\n \"email\": \"octocat@github.com\",\n \"primary\": false,\n \"verified\": false,\n \"visibility\": null\n },\n {\n \"email\": \"mona@github.com\",\n \"primary\": false,\n \"verified\": false,\n \"visibility\": null\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -78432,39 +78432,39 @@
"subcategoryLabel": "Emails",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "This endpoint is accessible with the user scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "This endpoint is accessible with the user scope.
",
"bodyParameters": [
{
"description": "Required. Email addresses associated with the GitHub user account.
",
@@ -78548,23 +78548,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -78634,23 +78634,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -78704,34 +78704,34 @@
"subcategoryLabel": "Followers",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if the person is followed by the authenticated user"
+ "description": "if the person is followed by the authenticated user
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if the person is not followed by the authenticated user"
+ "description": "if the person is not followed by the authenticated user
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -78782,35 +78782,35 @@
"subcategory": "followers",
"subcategoryLabel": "Followers",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nFollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nFollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
"
+ ]
},
{
"verb": "delete",
@@ -78861,35 +78861,35 @@
"subcategory": "followers",
"subcategoryLabel": "Followers",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Unfollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Unfollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
"
+ ]
},
{
"verb": "get",
@@ -78957,28 +78957,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"string\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -79062,33 +79062,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"\\\"-----BEGIN PGP PUBLIC KEY BLOCK-----\\\\nVersion: GnuPG v2\\\\n\\\\nmQENBFayYZ0BCAC4hScoJXXpyR+MXGcrBxElqw3FzCVvkViuyeko+Jp76QJhg8kr\\\\nucRTxbnOoHfda/FmilEa/wxf9ch5/PSrrL26FxEoPHhJolp8fnIDLQeITn94NYdB\\\\nZtnnEKslpPrG97qSUWIchvyqCPtvOb8+8fWvGx9K/ZWcEEdh1X8+WFR2jMENMeoX\\\\nwxHWQoPnS7LpX/85/M7VUcJxvDVfv+eHsnQupmE5bGarKNih0oMe3LbdN3qA5PTz\\\\nSCm6Iudar1VsQ+xTz08ymL7t4pnEtLguQ7EyatFHCjxNblv5RzxoL0tDgN3HqoDz\\\\nc7TEA+q4RtDQl9amcvQ95emnXmZ974u7UkYdABEBAAG0HlNvbWUgVXNlciA8c29t\\\\nZXVzZXJAZ21haWwuY29tPokBOAQTAQIAIgUCVrJhnQIbAwYLCQgHAwIGFQgCCQoL\\\\nBBYCAwECHgECF4AACgkQMmLv8lug0nAViQgArWjI55+7p48URr2z9Jvak+yrBTx1\\\\nzkufltQAnHTJkq+Kl9dySSmTnOop8o3rE4++IOpYV5Y36PkKf9EZMk4n1RQiDPKE\\\\nAFtRVTkRaoWzOir9KQXJPfhKrl01j/QzY+utfiMvUoBJZ9ybq8Pa885SljW9lbaX\\\\nIYw+hl8ZdJ2KStvGrEyfQvRyq3aN5c9TV//4BdGnwx7Qabq/U+G18lizG6f/yq15\\\\ned7t0KELaCfeKPvytp4VE9/z/Ksah/h3+Qilx07/oG2Ae5kC1bEC9coD/ogPUhbv\\\\nb2bsBIoY9E9YwsLoif2lU+o1t76zLgUktuNscRRUKobW028H1zuFS/XQhrkBDQRW\\\\nsmGdAQgApnyyv3i144OLYy0O4UKQxd3e10Y3WpDwfnGIBefAI1m7RxnUxBag/DsU\\\\n7gi9qLEC4VHSfq4eiNfr1LJOyCL2edTgCWFgBhVjbXjZe6YAOrAnhxwCErnN0Y7N\\\\n6s8wVh9fObSOyf8ZE6G7JeKpcq9Q6gd/KxagfD48a1v+fyRHpyQc6J9pUEmtrDJ7\\\\nBjmsd2VWzLBvNWdHyxDNtZweIaqIO9VUYYpr1mtTliNBOZLUelmgrt7HBRcJpWMA\\\\nS8muVVbuP5MK0trLBq/JB8qUH3zRzB/PhMgzmkIfjEK1VYDWm4E8DYyTWEJcHqkb\\\\neqFsNjrIlwPaA122BWC6gUOPwwH+oQARAQABiQEfBBgBAgAJBQJWsmGdAhsMAAoJ\\\\nEDJi7/JboNJwAyAIALd4xcdmGbZD98gScJzqwzkOMcO8zFHqHNvJ42xIFvGny7c0\\\\n1Rx7iyrdypOby5AxE+viQcjG4rpLZW/xKYBNGrCfDyQO7511I0v8x20EICMlMfD/\\\\nNrWQCzesEPcUlKTP07d+sFyP8AyseOidbzY/92CpskTgdSBjY/ntLSaoknl/fjJE\\\\nQM8OkPqU7IraO1Jzzdnm20d5PZL9+PIwIWdSTedU/vBMTJyNcoqvSfKf1wNC66XP\\\\nhqfYgXJE564AdWZKA3C0IyCqiv+LHwxLnUHio1a4/r91C8KPzxs6tGxRDjXLd7ms\\\\nuYFGWymiUGOE/giHlcxdYcHzwLnPDliMQOLiTkK5AQ0EVuxMygEIAOD+bW1cDTmE\\\\nBxh5JECoqeHuwgl6DlLhnubWPkQ4ZeRzBRAsFcEJQlwlJjrzFDicL+lnm6Qq4tt0\\\\n560TwHdf15/AKTZIZu7H25axvGNzgeaUkJEJdYAq9zTKWwX7wKyzBszi485nQg97\\\\nMfAqwhMpDW0Qqf8+7Ug+WEmfBSGv9uL3aQC6WEeIsHfri0n0n8v4XgwhfShXguxO\\\\nCsOztEsuW7WWKW9P4TngKKv4lCHdPlV6FwxeMzODBJvc2fkHVHnqc0PqszJ5xcF8\\\\n6gZCpMM027SbpeYWCAD5zwJyYP9ntfO1p2HjnQ1dZaP9FeNcO7uIV1Lnd1eGCu6I\\\\nsrVp5k1f3isAEQEAAYkCPgQYAQIACQUCVuxMygIbAgEpCRAyYu/yW6DScMBdIAQZ\\\\nAQIABgUCVuxMygAKCRCKohN4dhq2b4tcCACHxmOHVXNpu47OvUGYQydLgMACUlXN\\\\nlj+HfE0VReqShxdDmpasAY9IRpuMB2RsGK8GbNP+4SlOlAiPf5SMhS7nZNkNDgQQ\\\\naZ3HFpgrFmFwmE10BKT4iQtoxELLM57z0qGOAfTsEjWFQa4sF+6IHAQR/ptkdkkI\\\\nBUEXiMnAwVwBysLIJiLO8qdjB6qp52QkT074JVrwywT/P+DkMfC2k4r/AfEbf6eF\\\\ndmPDuPk6KD87+hJZsSa5MaMUBQVvRO/mgEkhJRITVu58eWGaBOcQJ8gqurhCqM5P\\\\nDfUA4TJ7wiqM6sS764vV1rOioTTXkszzhClQqET7hPVnVQjenYgv0EZHNyQH/1f1\\\\n/CYqvV1vFjM9vJjMbxXsATCkZe6wvBVKD8vLsJAr8N+onKQz+4OPc3kmKq7aESu3\\\\nCi/iuie5KKVwnuNhr9AzT61vEkKxwHcVFEvHB77F6ZAAInhRvjzmQbD2dlPLLQCC\\\\nqDj71ODSSAPTEmUy6969bgD9PfWei7kNkBIx7s3eBv8yzytSc2EcuUgopqFazquw\\\\nFs1+tqGHjBvQfTo6bqbJjp/9Ci2pvde3ElV2rAgUlb3lqXyXjRDqrXosh5GcRPQj\\\\nK8Nhj1BNhnrCVskE4BP0LYbOHuzgm86uXwGCFsY+w2VOsSm16Jx5GHyG5S5WU3+D\\\\nIts/HFYRLiFgDLmTlxo=\\\\n=+OzK\\\\n-----END PGP PUBLIC KEY BLOCK-----\\\"\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -79148,28 +79148,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"\\\"-----BEGIN PGP PUBLIC KEY BLOCK-----\\\\nVersion: GnuPG v2\\\\n\\\\nmQENBFayYZ0BCAC4hScoJXXpyR+MXGcrBxElqw3FzCVvkViuyeko+Jp76QJhg8kr\\\\nucRTxbnOoHfda/FmilEa/wxf9ch5/PSrrL26FxEoPHhJolp8fnIDLQeITn94NYdB\\\\nZtnnEKslpPrG97qSUWIchvyqCPtvOb8+8fWvGx9K/ZWcEEdh1X8+WFR2jMENMeoX\\\\nwxHWQoPnS7LpX/85/M7VUcJxvDVfv+eHsnQupmE5bGarKNih0oMe3LbdN3qA5PTz\\\\nSCm6Iudar1VsQ+xTz08ymL7t4pnEtLguQ7EyatFHCjxNblv5RzxoL0tDgN3HqoDz\\\\nc7TEA+q4RtDQl9amcvQ95emnXmZ974u7UkYdABEBAAG0HlNvbWUgVXNlciA8c29t\\\\nZXVzZXJAZ21haWwuY29tPokBOAQTAQIAIgUCVrJhnQIbAwYLCQgHAwIGFQgCCQoL\\\\nBBYCAwECHgECF4AACgkQMmLv8lug0nAViQgArWjI55+7p48URr2z9Jvak+yrBTx1\\\\nzkufltQAnHTJkq+Kl9dySSmTnOop8o3rE4++IOpYV5Y36PkKf9EZMk4n1RQiDPKE\\\\nAFtRVTkRaoWzOir9KQXJPfhKrl01j/QzY+utfiMvUoBJZ9ybq8Pa885SljW9lbaX\\\\nIYw+hl8ZdJ2KStvGrEyfQvRyq3aN5c9TV//4BdGnwx7Qabq/U+G18lizG6f/yq15\\\\ned7t0KELaCfeKPvytp4VE9/z/Ksah/h3+Qilx07/oG2Ae5kC1bEC9coD/ogPUhbv\\\\nb2bsBIoY9E9YwsLoif2lU+o1t76zLgUktuNscRRUKobW028H1zuFS/XQhrkBDQRW\\\\nsmGdAQgApnyyv3i144OLYy0O4UKQxd3e10Y3WpDwfnGIBefAI1m7RxnUxBag/DsU\\\\n7gi9qLEC4VHSfq4eiNfr1LJOyCL2edTgCWFgBhVjbXjZe6YAOrAnhxwCErnN0Y7N\\\\n6s8wVh9fObSOyf8ZE6G7JeKpcq9Q6gd/KxagfD48a1v+fyRHpyQc6J9pUEmtrDJ7\\\\nBjmsd2VWzLBvNWdHyxDNtZweIaqIO9VUYYpr1mtTliNBOZLUelmgrt7HBRcJpWMA\\\\nS8muVVbuP5MK0trLBq/JB8qUH3zRzB/PhMgzmkIfjEK1VYDWm4E8DYyTWEJcHqkb\\\\neqFsNjrIlwPaA122BWC6gUOPwwH+oQARAQABiQEfBBgBAgAJBQJWsmGdAhsMAAoJ\\\\nEDJi7/JboNJwAyAIALd4xcdmGbZD98gScJzqwzkOMcO8zFHqHNvJ42xIFvGny7c0\\\\n1Rx7iyrdypOby5AxE+viQcjG4rpLZW/xKYBNGrCfDyQO7511I0v8x20EICMlMfD/\\\\nNrWQCzesEPcUlKTP07d+sFyP8AyseOidbzY/92CpskTgdSBjY/ntLSaoknl/fjJE\\\\nQM8OkPqU7IraO1Jzzdnm20d5PZL9+PIwIWdSTedU/vBMTJyNcoqvSfKf1wNC66XP\\\\nhqfYgXJE564AdWZKA3C0IyCqiv+LHwxLnUHio1a4/r91C8KPzxs6tGxRDjXLd7ms\\\\nuYFGWymiUGOE/giHlcxdYcHzwLnPDliMQOLiTkK5AQ0EVuxMygEIAOD+bW1cDTmE\\\\nBxh5JECoqeHuwgl6DlLhnubWPkQ4ZeRzBRAsFcEJQlwlJjrzFDicL+lnm6Qq4tt0\\\\n560TwHdf15/AKTZIZu7H25axvGNzgeaUkJEJdYAq9zTKWwX7wKyzBszi485nQg97\\\\nMfAqwhMpDW0Qqf8+7Ug+WEmfBSGv9uL3aQC6WEeIsHfri0n0n8v4XgwhfShXguxO\\\\nCsOztEsuW7WWKW9P4TngKKv4lCHdPlV6FwxeMzODBJvc2fkHVHnqc0PqszJ5xcF8\\\\n6gZCpMM027SbpeYWCAD5zwJyYP9ntfO1p2HjnQ1dZaP9FeNcO7uIV1Lnd1eGCu6I\\\\nsrVp5k1f3isAEQEAAYkCPgQYAQIACQUCVuxMygIbAgEpCRAyYu/yW6DScMBdIAQZ\\\\nAQIABgUCVuxMygAKCRCKohN4dhq2b4tcCACHxmOHVXNpu47OvUGYQydLgMACUlXN\\\\nlj+HfE0VReqShxdDmpasAY9IRpuMB2RsGK8GbNP+4SlOlAiPf5SMhS7nZNkNDgQQ\\\\naZ3HFpgrFmFwmE10BKT4iQtoxELLM57z0qGOAfTsEjWFQa4sF+6IHAQR/ptkdkkI\\\\nBUEXiMnAwVwBysLIJiLO8qdjB6qp52QkT074JVrwywT/P+DkMfC2k4r/AfEbf6eF\\\\ndmPDuPk6KD87+hJZsSa5MaMUBQVvRO/mgEkhJRITVu58eWGaBOcQJ8gqurhCqM5P\\\\nDfUA4TJ7wiqM6sS764vV1rOioTTXkszzhClQqET7hPVnVQjenYgv0EZHNyQH/1f1\\\\n/CYqvV1vFjM9vJjMbxXsATCkZe6wvBVKD8vLsJAr8N+onKQz+4OPc3kmKq7aESu3\\\\nCi/iuie5KKVwnuNhr9AzT61vEkKxwHcVFEvHB77F6ZAAInhRvjzmQbD2dlPLLQCC\\\\nqDj71ODSSAPTEmUy6969bgD9PfWei7kNkBIx7s3eBv8yzytSc2EcuUgopqFazquw\\\\nFs1+tqGHjBvQfTo6bqbJjp/9Ci2pvde3ElV2rAgUlb3lqXyXjRDqrXosh5GcRPQj\\\\nK8Nhj1BNhnrCVskE4BP0LYbOHuzgm86uXwGCFsY+w2VOsSm16Jx5GHyG5S5WU3+D\\\\nIts/HFYRLiFgDLmTlxo=\\\\n=+OzK\\\\n-----END PGP PUBLIC KEY BLOCK-----\\\"\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -79223,40 +79223,40 @@
"subcategory": "gpg-keys",
"subcategoryLabel": "Gpg keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a GPG key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:gpg_key scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a GPG key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:gpg_key scope.
"
+ ]
},
{
"verb": "get",
@@ -79324,28 +79324,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "You can find the permissions for the installation under the `permissions` key.",
+ "description": "You can find the permissions for the installation under the permissions key.
",
"payload": "{\n \"total_count\": 2,\n \"installations\": [\n {\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"all\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n },\n {\n \"id\": 3,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"all\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -79432,23 +79432,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The access the user has to each repository is included in the hash under the `permissions` key.",
+ "description": "The access the user has to each repository is included in the hash under the permissions key.
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -79511,30 +79511,30 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Add a single repository to an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Add a single repository to an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -79595,30 +79595,30 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Remove a single repository from an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Remove a single repository from an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -79782,18 +79782,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -79863,28 +79863,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n },\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234\",\n \"id\": 3,\n \"url\": \"https://api.github.com/user/keys/3\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAB\",\n \"created_at\": \"2020-07-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -79990,33 +79990,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -80076,28 +80076,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -80151,35 +80151,35 @@
"subcategory": "keys",
"subcategoryLabel": "Keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a public SSH key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:public_key scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a public SSH key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:public_key scope.
"
+ ]
},
{
"verb": "get",
@@ -80261,28 +80261,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/orgs/octocat/memberships/defunkt\",\n \"state\": \"active\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/octocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"url\": \"https://api.github.com/orgs/invitocat/memberships/defunkt\",\n \"state\": \"pending\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/invitocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -80341,18 +80341,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/orgs/invitocat/memberships/defunkt\",\n \"state\": \"pending\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/invitocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -80455,23 +80455,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/orgs/octocat/memberships/defunkt\",\n \"state\": \"active\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/octocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -80539,23 +80539,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -80667,33 +80667,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/users/octocat\",\n \"url\": \"https://api.github.com/projects/1002603\",\n \"html_url\": \"https://github.com/users/octocat/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002603/columns\",\n \"id\": 1002603,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDM=\",\n \"name\": \"My Projects\",\n \"body\": \"A board to manage my personal projects.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -80763,28 +80763,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"email\": \"octocat@github.com\",\n \"verified\": true,\n \"primary\": true,\n \"visibility\": \"public\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -80956,22 +80956,22 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -81398,38 +81398,38 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -81499,28 +81499,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -81575,34 +81575,34 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -81655,34 +81655,34 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -81786,17 +81786,17 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -81859,34 +81859,34 @@
"subcategoryLabel": "Starring",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if this repository is starred by you"
+ "description": "Response if this repository is starred by you
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if this repository is not starred by you"
+ "description": "Not Found if this repository is not starred by you
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -81946,35 +81946,35 @@
"subcategory": "starring",
"subcategoryLabel": "Starring",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -82035,34 +82035,34 @@
"subcategoryLabel": "Starring",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -82130,23 +82130,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -82214,23 +82214,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -82298,13 +82298,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -82373,7 +82373,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -82446,15 +82446,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "If you are authenticated as the given user, you will see your private events. Otherwise, you'll only see public events.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "If you are authenticated as the given user, you will see your private events. Otherwise, you'll only see public events.
"
+ ]
},
{
"verb": "get",
@@ -82534,15 +82534,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This is the user's organization dashboard. You must be authenticated as the user to view this.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This is the user's organization dashboard. You must be authenticated as the user to view this.
"
+ ]
},
{
"verb": "get",
@@ -82614,14 +82614,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -82698,7 +82698,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -82778,7 +82778,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -82842,19 +82842,19 @@
"subcategoryLabel": "Followers",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if the user follows the target user"
+ "description": "if the user follows the target user
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if the user does not follow the target user"
+ "description": "if the user does not follow the target user
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -82940,13 +82940,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -83025,7 +83025,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"string\"\n }\n]\n
"
}
]
@@ -83109,18 +83109,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"contexts\": [\n {\n \"message\": \"Owns this repository\",\n \"octicon\": \"repo\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -83177,7 +83177,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
}
]
@@ -83257,7 +83257,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\"\n }\n]\n
"
}
]
@@ -83335,7 +83335,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
}
]
@@ -83435,13 +83435,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/users/octocat\",\n \"url\": \"https://api.github.com/projects/1002603\",\n \"html_url\": \"https://github.com/users/octocat/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002603/columns\",\n \"id\": 1002603,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDM=\",\n \"name\": \"My Projects\",\n \"body\": \"A board to manage my personal projects.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -83514,15 +83514,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "These are events that you've received by watching repos and following users. If you are authenticated as the given user, you will see private events. Otherwise, you'll only see public events.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "These are events that you've received by watching repos and following users. If you are authenticated as the given user, you will see private events. Otherwise, you'll only see public events.
"
+ ]
},
{
"verb": "get",
@@ -83594,14 +83594,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -83729,7 +83729,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -83783,15 +83783,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -83842,15 +83842,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "You can demote any user account except your own.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "You can demote any user account except your own.
"
+ ]
},
{
"verb": "get",
@@ -84037,7 +84037,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -84113,14 +84113,14 @@
"subcategoryLabel": "Users",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, Active Directory LDAP-authenticated users cannot be suspended through this API. If you attempt to suspend an Active Directory LDAP-authenticated user through this API, it will return a 403 response.
\nYou can suspend any user account except your own.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, Active Directory LDAP-authenticated users cannot be suspended through this API. If you attempt to suspend an Active Directory LDAP-authenticated user through this API, it will return a 403 response.
\nYou can suspend any user account except your own.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -84204,14 +84204,14 @@
"subcategoryLabel": "Users",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, this API is disabled and will return a 403 response. Active Directory LDAP-authenticated users cannot be unsuspended using the API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, this API is disabled and will return a 403 response. Active Directory LDAP-authenticated users cannot be unsuspended using the API.
",
"bodyParameters": [
{
"type": "string",
@@ -84256,14 +84256,14 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get a random sentence from the Zen of GitHub
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get a random sentence from the Zen of GitHub
"
+ ]
}
]
\ No newline at end of file
diff --git a/lib/rest/static/decorated/ghes-3.1.json b/lib/rest/static/decorated/ghes-3.1.json
index 96c42e3ae9..3adb46352e 100644
--- a/lib/rest/static/decorated/ghes-3.1.json
+++ b/lib/rest/static/decorated/ghes-3.1.json
@@ -35,15 +35,15 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get Hypermedia links to resources accessible in GitHub's REST API
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get Hypermedia links to resources accessible in GitHub's REST API
"
+ ]
},
{
"verb": "get",
@@ -129,7 +129,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\",\n \"user\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n }\n]\n
"
}
]
@@ -351,7 +351,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\",\n \"user\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n}\n
"
}
],
@@ -556,7 +556,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\",\n \"user\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n}\n
"
}
]
@@ -769,7 +769,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"form\",\n \"insecure_ssl\": \"0\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n}\n
"
}
],
@@ -960,14 +960,14 @@
"subcategoryLabel": "Global webhooks",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -1036,15 +1036,15 @@
"subcategory": "global-webhooks",
"subcategoryLabel": "Global webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the webhook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the webhook.
"
+ ]
},
{
"verb": "get",
@@ -1152,7 +1152,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false,\n \"last_used\": \"2020-06-11T22:31:57Z\",\n \"user_id\": 1,\n \"repository_id\": 2\n },\n {\n \"key\": \"9Og8iYjAyymI9LvABpJerYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 3,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false,\n \"last_used\": \"2020-06-11T22:31:57Z\",\n \"user_id\": 1,\n \"repository_id\": 2\n }\n]\n
"
}
]
@@ -1207,14 +1207,14 @@
"subcategoryLabel": "Users",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "patch",
@@ -1316,7 +1316,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ldap_dn\": \"cn=Enterprise Ops,ou=teams,dc=github,dc=com\",\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n}\n
"
}
]
@@ -1376,7 +1376,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"queued\"\n}\n
"
}
]
@@ -1474,7 +1474,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\",\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"name\": \"monalisa octocat\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"hireable\": false,\n \"bio\": \"There once was...\",\n \"twitter_username\": \"monatheoctocat\",\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2008-01-14T04:33:35Z\",\n \"private_gists\": 81,\n \"total_private_repos\": 100,\n \"owned_private_repos\": 100,\n \"disk_usage\": 10000,\n \"collaborators\": 8,\n \"two_factor_authentication\": true,\n \"plan\": {\n \"name\": \"Medium\",\n \"space\": 400,\n \"private_repos\": 20,\n \"collaborators\": 0\n }\n}\n
"
}
]
@@ -1534,7 +1534,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"queued\"\n}\n
"
}
]
@@ -1661,7 +1661,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n}\n
"
}
]
@@ -1759,7 +1759,7 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"message\": \"Job queued to rename organization. It may take a few minutes to complete.\",\n \"url\": \"https://<hostname>/api/v3/organizations/1\"\n}\n
"
}
]
@@ -1867,7 +1867,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"name\": \"Default\",\n \"image_url\": \"githubenterprise://internal\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/1\",\n \"default_environment\": true,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 14,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n }\n]\n
"
}
]
@@ -1982,7 +1982,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": null,\n \"message\": null\n }\n}\n
"
}
]
@@ -2049,7 +2049,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": null,\n \"message\": null\n }\n}\n
"
}
]
@@ -2165,13 +2165,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Client Errors",
+ "description": "Client Errors
",
"payload": "{\n \"message\": \"Validation Failed\",\n \"errors\": [\n {\n \"resource\": \"PreReceiveEnvironment\",\n \"code\": \"custom\",\n \"message\": \"Cannot modify or delete the default environment\"\n }\n ]\n}\n
"
}
]
@@ -2238,12 +2238,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Client Errors",
+ "description": "Client Errors
",
"payload": "{\n \"message\": \"Validation Failed\",\n \"errors\": [\n {\n \"resource\": \"PreReceiveEnvironment\",\n \"code\": \"custom\",\n \"message\": \"Cannot modify or delete the default environment\"\n }\n ]\n}\n
"
}
]
@@ -2310,13 +2310,13 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/3/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": null,\n \"message\": null\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Client Errors",
+ "description": "Client Errors
",
"payload": "{\n \"message\": \"Validation Failed\",\n \"errors\": [\n {\n \"resource\": \"PreReceiveEnvironment\",\n \"code\": \"custom\",\n \"message\": \"Can not start a new download when a download is in progress\"\n }\n ]\n}\n
"
}
]
@@ -2383,7 +2383,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/3/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n}\n
"
}
]
@@ -2492,7 +2492,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": false\n }\n]\n
"
}
]
@@ -2633,14 +2633,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": false\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -2700,6 +2692,14 @@
"rawDescription": "Whether enforcement can be overridden at the org or repo level. default: `false`",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": false\n}\n
"
+ }
]
},
{
@@ -2765,7 +2765,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": false\n}\n
"
}
]
@@ -2905,14 +2905,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 1,\n \"name\": \"Default\",\n \"image_url\": \"githubenterprise://internal\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/1\",\n \"default_environment\": true,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": true\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -2972,6 +2964,14 @@
"rawDescription": "Whether enforcement can be overridden at the org or repo level.",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 1,\n \"name\": \"Default\",\n \"image_url\": \"githubenterprise://internal\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/1\",\n \"default_environment\": true,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": true\n}\n
"
+ }
]
},
{
@@ -3032,14 +3032,14 @@
"subcategoryLabel": "Pre receive hooks",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -3107,7 +3107,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 2,\n \"url\": \"https://enterprise.octocat.com/api/v3/authorizations/2\",\n \"app\": {\n \"name\": \"My personal access token\",\n \"url\": \"https://docs.github.com/enterprise/rest/reference/enterprise-admin#list-personal-access-tokens\",\n \"client_id\": \"00000000000000000000\"\n },\n \"token\": \"ghp_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"hashed_token\": \"23cffb2fab1b0a62747863eba88cb9327e561f2f7a0c8661c0d9b83146cb8d45\",\n \"token_last_eight\": \"Ae178B4a\",\n \"note\": \"My personal access token\",\n \"note_url\": null,\n \"created_at\": \"2019-04-24T21:49:02Z\",\n \"updated_at\": \"2019-04-24T21:49:02Z\",\n \"scopes\": [\n \"admin:business\",\n \"admin:gpg_key\",\n \"admin:org\",\n \"admin:org_hook\",\n \"admin:pre_receive_hook\",\n \"admin:public_key\",\n \"admin:repo_hook\",\n \"delete_repo\",\n \"gist\",\n \"notifications\",\n \"repo\",\n \"user\",\n \"write:discussion\"\n ],\n \"fingerprint\": null\n }\n]\n
"
}
]
@@ -3161,15 +3161,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a personal access token. Returns a 403 - Forbidden status when a personal access token is in use. For example, if you access this endpoint with the same personal access token that you are trying to delete, you will receive this error.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a personal access token. Returns a 403 - Forbidden status when a personal access token is in use. For example, if you access this endpoint with the same personal access token that you are trying to delete, you will receive this error.
"
+ ]
},
{
"verb": "post",
@@ -3273,7 +3273,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n}\n
"
}
]
@@ -3371,7 +3371,7 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"message\": \"Job queued to rename user. It may take a few minutes to complete.\",\n \"url\": \"https://api.github.com/user/1\"\n}\n
"
}
]
@@ -3425,15 +3425,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deleting a user will delete all their repositories, gists, applications, and personal settings. Suspending a user is often a better option.
\nYou can delete any user account except your own.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deleting a user will delete all their repositories, gists, applications, and personal settings. Suspending a user is often a better option.
\nYou can delete any user account except your own.
"
+ ]
},
{
"verb": "post",
@@ -3528,7 +3528,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
}
]
@@ -3583,14 +3583,14 @@
"subcategoryLabel": "Users",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -3635,7 +3635,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n}\n
"
}
]
@@ -3705,18 +3705,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDxOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"client_id\": \"Iv1.8a61f9b3a7aba766\",\n \"client_secret\": \"1726be1638095a19edd134c77bde3aa2ece1e5d8\",\n \"webhook_secret\": \"e340154128314309424b7c8e90325147d99fdafa\",\n \"pem\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIIEowIBAAKCAQEAuEPzOUE+kiEH1WLiMeBytTEF856j0hOVcSUSUkZxKvqczkWM\\n9vo1gDyC7ZXhdH9fKh32aapba3RSsp4ke+giSmYTk2mGR538ShSDxh0OgpJmjiKP\\nX0Bj4j5sFqfXuCtl9SkH4iueivv4R53ktqM+n6hk98l6hRwC39GVIblAh2lEM4L/\\n6WvYwuQXPMM5OG2Ryh2tDZ1WS5RKfgq+9ksNJ5Q9UtqtqHkO+E63N5OK9sbzpUUm\\noNaOl3udTlZD3A8iqwMPVxH4SxgATBPAc+bmjk6BMJ0qIzDcVGTrqrzUiywCTLma\\nszdk8GjzXtPDmuBgNn+o6s02qVGpyydgEuqmTQIDAQABAoIBACL6AvkjQVVLn8kJ\\ndBYznJJ4M8ECo+YEgaFwgAHODT0zRQCCgzd+Vxl4YwHmKV2Lr+y2s0drZt8GvYva\\nKOK8NYYZyi15IlwFyRXmvvykF1UBpSXluYFDH7KaVroWMgRreHcIys5LqVSIb6Bo\\ngDmK0yBLPp8qR29s2b7ScZRtLaqGJiX+j55rNzrZwxHkxFHyG9OG+u9IsBElcKCP\\nkYCVE8ZdYexfnKOZbgn2kZB9qu0T/Mdvki8yk3I2bI6xYO24oQmhnT36qnqWoCBX\\nNuCNsBQgpYZeZET8mEAUmo9d+ABmIHIvSs005agK8xRaP4+6jYgy6WwoejJRF5yd\\nNBuF7aECgYEA50nZ4FiZYV0vcJDxFYeY3kYOvVuKn8OyW+2rg7JIQTremIjv8FkE\\nZnwuF9ZRxgqLxUIfKKfzp/5l5LrycNoj2YKfHKnRejxRWXqG+ZETfxxlmlRns0QG\\nJ4+BYL0CoanDSeA4fuyn4Bv7cy/03TDhfg/Uq0Aeg+hhcPE/vx3ebPsCgYEAy/Pv\\neDLssOSdeyIxf0Brtocg6aPXIVaLdus+bXmLg77rJIFytAZmTTW8SkkSczWtucI3\\nFI1I6sei/8FdPzAl62/JDdlf7Wd9K7JIotY4TzT7Tm7QU7xpfLLYIP1bOFjN81rk\\n77oOD4LsXcosB/U6s1blPJMZ6AlO2EKs10UuR1cCgYBipzuJ2ADEaOz9RLWwi0AH\\nPza2Sj+c2epQD9ZivD7Zo/Sid3ZwvGeGF13JyR7kLEdmAkgsHUdu1rI7mAolXMaB\\n1pdrsHureeLxGbRM6za3tzMXWv1Il7FQWoPC8ZwXvMOR1VQDv4nzq7vbbA8z8c+c\\n57+8tALQHOTDOgQIzwK61QKBgERGVc0EJy4Uag+VY8J4m1ZQKBluqo7TfP6DQ7O8\\nM5MX73maB/7yAX8pVO39RjrhJlYACRZNMbK+v/ckEQYdJSSKmGCVe0JrGYDuPtic\\nI9+IGfSorf7KHPoMmMN6bPYQ7Gjh7a++tgRFTMEc8956Hnt4xGahy9NcglNtBpVN\\n6G8jAoGBAMCh028pdzJa/xeBHLLaVB2sc0Fe7993WlsPmnVE779dAz7qMscOtXJK\\nfgtriltLSSD6rTA9hUAsL/X62rY0wdXuNdijjBb/qvrx7CAV6i37NK1CjABNjsfG\\nZM372Ac6zc1EqSrid2IjET1YqyIW2KGLI1R2xbQc98UGlt48OdWu\\n-----END RSA PRIVATE KEY-----\\n\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -3765,7 +3765,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -3877,14 +3877,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for a GitHub App. For more information about configuring a webhook for your app, see \"Creating a GitHub App.\"
\nYou must use a JWT to access this endpoint.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -3934,6 +3926,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -4020,7 +4020,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The permissions the installation has are included under the `permissions` key.",
+ "description": "The permissions the installation has are included under the permissions key.
",
"payload": "[\n {\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"selected\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n]\n
"
}
]
@@ -4079,18 +4079,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"selected\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -4142,20 +4142,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Uninstalls a GitHub App on a user, organization, or business account. If you prefer to temporarily suspend an app's access to your account's resources, then we recommend the \"Suspend an app installation\" endpoint.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Uninstalls a GitHub App on a user, organization, or business account. If you prefer to temporarily suspend an app's access to your account's resources, then we recommend the \"Suspend an app installation\" endpoint.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -5083,33 +5083,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"ghs_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"expires_at\": \"2016-07-11T22:14:10Z\",\n \"permissions\": {\n \"issues\": \"write\",\n \"contents\": \"read\"\n },\n \"repository_selection\": \"selected\",\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -6023,20 +6023,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Suspends a GitHub App on a user, organization, or business account, which blocks the app from accessing the account's resources. When a GitHub App is suspended, the app's access to the GitHub Enterprise Server API or webhook events is blocked for that account.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Suspends a GitHub App on a user, organization, or business account, which blocks the app from accessing the account's resources. When a GitHub App is suspended, the app's access to the GitHub Enterprise Server API or webhook events is blocked for that account.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -6086,20 +6086,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a GitHub App installation suspension.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a GitHub App installation suspension.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -6178,28 +6178,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"url\": \"https://api.github.com/applications/grants/1\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"scopes\": [\n \"public_repo\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -6260,23 +6260,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/applications/grants/1\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"scopes\": [\n \"public_repo\"\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -6331,30 +6331,30 @@
"category": "oauth-authorizations",
"categoryLabel": "Oauth authorizations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for your user. Once deleted, the application has no access to your account and is no longer listed on the application authorizations settings screen within GitHub.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for your user. Once deleted, the application has no access to your account and is no longer listed on the application authorizations settings screen within GitHub.
"
+ ]
},
{
"verb": "delete",
@@ -6434,19 +6434,19 @@
"subcategoryLabel": "Oauth applications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "OAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid OAuth access_token as an input parameter and the grant for the token's owner will be deleted.\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the application authorizations settings screen within GitHub.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "OAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid OAuth access_token as an input parameter and the grant for the token's owner will be deleted.\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the application authorizations settings screen within GitHub.
",
"bodyParameters": [
{
"type": "string",
@@ -6521,15 +6521,15 @@
"subcategory": "oauth-applications",
"subcategoryLabel": "Oauth applications",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.
\nOAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid token as :access_token and the grant for the token's owner will be deleted.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the Applications settings page under \"Authorized OAuth Apps\" on GitHub Enterprise Server.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.
\nOAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid token as :access_token and the grant for the token's owner will be deleted.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the Applications settings page under \"Authorized OAuth Apps\" on GitHub Enterprise Server.
"
+ ]
},
{
"verb": "post",
@@ -6622,18 +6622,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -6728,13 +6728,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -6816,19 +6816,19 @@
"subcategoryLabel": "Oauth applications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "OAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "OAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
",
"bodyParameters": [
{
"type": "string",
@@ -7802,28 +7802,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"installation\": {\n \"permissions\": {\n \"metadata\": \"read\",\n \"issues\": \"write\",\n \"contents\": \"read\"\n },\n \"repository_selection\": \"selected\",\n \"single_file_name\": \".github/workflow.yml\",\n \"repositories_url\": \"https://api.github.com/user/repos\",\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"has_multiple_single_files\": false,\n \"single_file_paths\": []\n }\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -8787,13 +8787,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -8865,7 +8865,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -8932,15 +8932,15 @@
"subcategory": "oauth-applications",
"subcategoryLabel": "Oauth applications",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.
\nOAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.
\nOAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
"
+ ]
},
{
"verb": "get",
@@ -8995,23 +8995,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -9092,28 +9092,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 2,\n \"url\": \"https://enterprise.octocat.com/api/v3/authorizations/2\",\n \"app\": {\n \"name\": \"My personal access token\",\n \"url\": \"https://docs.github.com/enterprise/rest/reference/enterprise-admin#list-personal-access-tokens\",\n \"client_id\": \"00000000000000000000\"\n },\n \"token\": \"ghp_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"hashed_token\": \"23cffb2fab1b0a62747863eba88cb9327e561f2f7a0c8661c0d9b83146cb8d45\",\n \"token_last_eight\": \"Ae178B4a\",\n \"note\": \"My personal access token\",\n \"note_url\": null,\n \"created_at\": \"2019-04-24T21:49:02Z\",\n \"updated_at\": \"2019-04-24T21:49:02Z\",\n \"scopes\": [\n \"admin:business\",\n \"admin:gpg_key\",\n \"admin:org\",\n \"admin:org_hook\",\n \"admin:pre_receive_hook\",\n \"admin:public_key\",\n \"admin:repo_hook\",\n \"delete_repo\",\n \"gist\",\n \"notifications\",\n \"repo\",\n \"user\",\n \"write:discussion\"\n ],\n \"fingerprint\": null\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -9307,33 +9307,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -9521,34 +9521,34 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if returning an existing token",
+ "description": "if returning an existing token
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "**Deprecation Notice:** GitHub will discontinue the [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.1/rest/reference/oauth-authorizations), which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our [web application flow](https://docs.github.com/enterprise-server@3.1/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow). The [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.1/rest/reference/oauth-authorizations) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/changes/2020-02-14-deprecating-oauth-auth-endpoint/).",
+ "description": "Deprecation Notice: GitHub will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -9727,19 +9727,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if returning an existing token",
+ "description": "if returning an existing token
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response if returning a new token",
+ "description": "Response if returning a new token
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -9800,23 +9800,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -10029,13 +10029,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -10090,30 +10090,30 @@
"category": "oauth-authorizations",
"categoryLabel": "Oauth authorizations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
"
+ ]
},
{
"verb": "get",
@@ -10158,13 +10158,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"citizen_code_of_conduct\",\n \"name\": \"Citizen Code of Conduct\",\n \"url\": \"https://api.github.com/codes_of_conduct/citizen_code_of_conduct\",\n \"html_url\": \"http://citizencodeofconduct.org/\"\n },\n {\n \"key\": \"contributor_covenant\",\n \"name\": \"Contributor Covenant\",\n \"url\": \"https://api.github.com/codes_of_conduct/contributor_covenant\",\n \"html_url\": \"https://www.contributor-covenant.org/version/2/0/code_of_conduct/\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -10221,18 +10221,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"contributor_covenant\",\n \"name\": \"Contributor Covenant\",\n \"url\": \"https://api.github.com/codes_of_conduct/contributor_covenant\",\n \"body\": \"# Contributor Covenant Code of Conduct\\n\\n## Our Pledge\\n\\nIn the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.\\n\\n## Our Standards\\n\\nExamples of behavior that contributes to creating a positive environment include:\\n\\n* Using welcoming and inclusive language\\n* Being respectful of differing viewpoints and experiences\\n* Gracefully accepting constructive criticism\\n* Focusing on what is best for the community\\n* Showing empathy towards other community members\\n\\nExamples of unacceptable behavior by participants include:\\n\\n* The use of sexualized language or imagery and unwelcome sexual attention or advances\\n* Trolling, insulting/derogatory comments, and personal or political attacks\\n* Public or private harassment\\n* Publishing others' private information, such as a physical or electronic address, without explicit permission\\n* Other conduct which could reasonably be considered inappropriate in a professional setting\\n\\n## Our Responsibilities\\n\\nProject maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response\\n to any instances of unacceptable behavior.\\n\\nProject maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.\\n\\n## Scope\\n\\nThis Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address,\\n posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.\\n\\n## Enforcement\\n\\nInstances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [EMAIL]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.\\n\\nProject maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.\\n\\n## Attribution\\n\\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]\\n\\n[homepage]: http://contributor-covenant.org\\n[version]: http://contributor-covenant.org/version/1/4/\\n\",\n \"html_url\": \"http://contributor-covenant.org/version/1/4/\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -10273,20 +10273,20 @@
"category": "emojis",
"categoryLabel": "Emojis",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Lists all the emojis available to use on GitHub Enterprise Server.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Lists all the emojis available to use on GitHub Enterprise Server.
"
+ ]
},
{
"verb": "get",
@@ -10478,15 +10478,15 @@
"subcategory": "announcement",
"subcategoryLabel": "Announcement",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes the global announcement banner in your enterprise.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes the global announcement banner in your enterprise.
"
+ ]
},
{
"verb": "get",
@@ -10533,7 +10533,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"seats\": 1400,\n \"seats_used\": 1316,\n \"seats_available\": 84,\n \"kind\": \"standard\",\n \"days_until_expiration\": 365,\n \"expire_at\": \"2016/02/06 12:41:52 -0600\"\n}\n
"
}
]
@@ -10583,7 +10583,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"repos\": {\n \"total_repos\": 212,\n \"root_repos\": 194,\n \"fork_repos\": 18,\n \"org_repos\": 51,\n \"total_pushes\": 3082,\n \"total_wikis\": 15\n },\n \"hooks\": {\n \"total_hooks\": 27,\n \"active_hooks\": 23,\n \"inactive_hooks\": 4\n },\n \"pages\": {\n \"total_pages\": 36\n },\n \"orgs\": {\n \"total_orgs\": 33,\n \"disabled_orgs\": 0,\n \"total_teams\": 60,\n \"total_team_members\": 314\n },\n \"users\": {\n \"total_users\": 254,\n \"admin_users\": 45,\n \"suspended_users\": 21\n },\n \"pulls\": {\n \"total_pulls\": 86,\n \"merged_pulls\": 60,\n \"mergeable_pulls\": 21,\n \"unmergeable_pulls\": 3\n },\n \"issues\": {\n \"total_issues\": 179,\n \"open_issues\": 83,\n \"closed_issues\": 96\n },\n \"milestones\": {\n \"total_milestones\": 7,\n \"open_milestones\": 6,\n \"closed_milestones\": 1\n },\n \"gists\": {\n \"total_gists\": 178,\n \"private_gists\": 151,\n \"public_gists\": 25\n },\n \"comments\": {\n \"total_commit_comments\": 6,\n \"total_gist_comments\": 28,\n \"total_issue_comments\": 366,\n \"total_pull_request_comments\": 30\n }\n}\n
"
}
]
@@ -10628,14 +10628,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10677,14 +10677,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10725,14 +10725,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10774,14 +10774,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10823,14 +10823,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10872,14 +10872,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10921,14 +10921,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10970,14 +10970,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11018,14 +11018,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11067,14 +11067,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11132,7 +11132,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled_organizations\": \"all\",\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/enterprises/2/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -11235,14 +11235,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for organizations and allowed actions in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for organizations and allowed actions in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"type": "string",
@@ -11350,7 +11350,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"organizations\": [\n {\n \"login\": \"octocat\",\n \"id\": 161335,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"url\": \"https://api.github.com/orgs/octo-org\",\n \"repos_url\": \"https://api.github.com/orgs/octo-org/repos\",\n \"events_url\": \"https://api.github.com/orgs/octo-org/events\",\n \"hooks_url\": \"https://api.github.com/orgs/octo-org/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/octo-org/issues\",\n \"members_url\": \"https://api.github.com/orgs/octo-org/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/octo-org/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n ]\n}\n
"
}
]
@@ -11440,14 +11440,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of organization IDs to enable for GitHub Actions.
",
@@ -11524,15 +11524,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds an organization to the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds an organization to the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -11594,15 +11594,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization from the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization from the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -11660,7 +11660,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -11765,14 +11765,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"type": "boolean",
@@ -11873,7 +11873,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"runner_groups\": [\n {\n \"id\": 1,\n \"name\": \"Default\",\n \"visibility\": \"all\",\n \"default\": true,\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/1/runners\",\n \"allows_public_repositories\": false\n },\n {\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/2/runners\",\n \"allows_public_repositories\": true\n },\n {\n \"id\": 3,\n \"name\": \"expensive-hardware\",\n \"visibility\": \"private\",\n \"default\": false,\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/3/runners\",\n \"allows_public_repositories\": true\n }\n ]\n}\n
"
}
]
@@ -12079,7 +12079,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": false\n}\n
"
}
]
@@ -12150,7 +12150,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": false\n}\n
"
}
]
@@ -12305,7 +12305,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"Expensive hardware runners\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -12370,15 +12370,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a self-hosted runner group for an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a self-hosted runner group for an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -12466,7 +12466,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"organizations\": [\n {\n \"login\": \"octocat\",\n \"id\": 161335,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"url\": \"https://api.github.com/orgs/octo-org\",\n \"repos_url\": \"https://api.github.com/orgs/octo-org/repos\",\n \"events_url\": \"https://api.github.com/orgs/octo-org/events\",\n \"hooks_url\": \"https://api.github.com/orgs/octo-org/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/octo-org/issues\",\n \"members_url\": \"https://api.github.com/orgs/octo-org/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/octo-org/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n ]\n}\n
"
}
]
@@ -12566,14 +12566,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of organizations that have access to a self-hosted runner configured in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of organizations that have access to a self-hosted runner configured in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of organization IDs that can access the runner group.
",
@@ -12660,15 +12660,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds an organization to the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds an organization to the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -12740,15 +12740,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization from the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization from the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -12836,7 +12836,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -12936,14 +12936,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of self-hosted runners that are part of an enterprise runner group.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of self-hosted runners that are part of an enterprise runner group.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of runner IDs to add to the runner group.
",
@@ -13030,15 +13030,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise\nscope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise\nscope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -13110,15 +13110,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a self-hosted runner from a group configured in an enterprise. The runner is then returned to the default group.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a self-hosted runner from a group configured in an enterprise. The runner is then returned to the default group.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -13196,7 +13196,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -13257,7 +13257,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"os\": \"osx\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-osx-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-osx-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm-2.164.0.tar.gz\"\n },\n {\n \"os\": \"win\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-win-x64-2.164.0.zip\",\n \"filename\": \"actions-runner-win-x64-2.164.0.zip\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm64-2.164.0.tar.gz\"\n }\n]\n
"
}
]
@@ -13318,7 +13318,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"LLBF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-22T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -13379,7 +13379,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"AABF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-29T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -13450,7 +13450,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 23,\n \"name\": \"MBP\",\n \"os\": \"macos\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
}
]
@@ -13515,15 +13515,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from an enterprise. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from an enterprise. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -13585,30 +13585,30 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "We delay the public events feed by five minutes, which means the most recent event returned by the public events API actually occurred at least five minutes ago.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "We delay the public events feed by five minutes, which means the most recent event returned by the public events API actually occurred at least five minutes ago.
"
+ ]
},
{
"verb": "get",
@@ -13655,7 +13655,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"timeline_url\": \"https://github.com/timeline\",\n \"user_url\": \"https://github.com/{user}\",\n \"current_user_public_url\": \"https://github.com/octocat\",\n \"current_user_url\": \"https://github.com/octocat.private?token=abc123\",\n \"current_user_actor_url\": \"https://github.com/octocat.private.actor?token=abc123\",\n \"current_user_organization_url\": \"\",\n \"current_user_organization_urls\": [\n \"https://github.com/organizations/github/octocat.private.atom?token=abc123\"\n ],\n \"security_advisories_url\": \"https://github.com/security-advisories\",\n \"_links\": {\n \"timeline\": {\n \"href\": \"https://github.com/timeline\",\n \"type\": \"application/atom+xml\"\n },\n \"user\": {\n \"href\": \"https://github.com/{user}\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_public\": {\n \"href\": \"https://github.com/octocat\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user\": {\n \"href\": \"https://github.com/octocat.private?token=abc123\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_actor\": {\n \"href\": \"https://github.com/octocat.private.actor?token=abc123\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_organization\": {\n \"href\": \"\",\n \"type\": \"\"\n },\n \"current_user_organizations\": [\n {\n \"href\": \"https://github.com/organizations/github/octocat.private.atom?token=abc123\",\n \"type\": \"application/atom+xml\"\n }\n ]\n }\n}\n
"
}
]
@@ -13735,18 +13735,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -13865,34 +13865,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Allows you to add a new gist with one or more files.
\nNote: Don't name your files \"gistfile\" with a numerical suffix. This is the format of the automatic naming scheme that Gist uses internally.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
- },
- {
- "httpStatusCode": "304",
- "httpStatusMessage": "Not Modified",
- "description": "Not modified"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"description": "Description of the gist
",
@@ -13955,6 +13927,34 @@
"type": "boolean or string",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "304",
+ "httpStatusMessage": "Not Modified",
+ "description": "Not modified
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -14032,23 +14032,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -14127,23 +14127,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -14201,23 +14201,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden Gist"
+ "description": "Forbidden Gist
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -14352,24 +14352,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Allows you to update or delete a gist file and rename gist files. Files from the previous version of the gist that aren't explicitly changed during an edit are unchanged.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"description": "Description of the gist
",
@@ -14427,6 +14409,24 @@
"rawDescription": "Names of files to be updated",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -14478,29 +14478,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -14578,23 +14578,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -14693,23 +14693,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -14779,23 +14779,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden Gist"
+ "description": "Forbidden Gist
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -14904,13 +14904,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -14975,29 +14975,29 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -15073,23 +15073,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/57a7f021a713b1c5a6a199b54cc514735d2d462f\",\n \"version\": \"57a7f021a713b1c5a6a199b54cc514735d2d462f\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"change_status\": {\n \"deletions\": 0,\n \"additions\": 180,\n \"total\": 180\n },\n \"committed_at\": \"2010-04-14T02:15:15Z\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -15167,23 +15167,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 1,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -15241,28 +15241,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -15315,29 +15315,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if gist is starred"
+ "description": "Response if gist is starred
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if gist is not starred"
+ "description": "Not Found if gist is not starred
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -15387,30 +15387,30 @@
"category": "gists",
"categoryLabel": "Gists",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -15461,29 +15461,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -15548,23 +15548,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -15611,13 +15611,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"Actionscript\",\n \"Android\",\n \"AppceleratorTitanium\",\n \"Autotools\",\n \"Bancha\",\n \"C\",\n \"C++\"\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -15674,13 +15674,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"C\",\n \"source\": \"# Object files\\n*.o\\n\\n# Libraries\\n*.lib\\n*.a\\n\\n# Shared objects (inc. Windows DLLs)\\n*.dll\\n*.so\\n*.so.*\\n*.dylib\\n\\n# Executables\\n*.exe\\n*.out\\n*.app\\n\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -15757,23 +15757,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -15816,15 +15816,15 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Revokes the installation token you're using to authenticate as an installation and access this endpoint.
\nOnce an installation token is revoked, the token is invalidated and cannot be used. Other endpoints that require the revoked installation token must have a new installation token to work. You can create a new token using the \"Create an installation access token for an app\" endpoint.
\nYou must use an installation access token to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Revokes the installation token you're using to authenticate as an installation and access this endpoint.
\nOnce an installation token is revoked, the token is invalidated and cannot be used. Other endpoints that require the revoked installation token must have a new installation token to work. You can create a new token using the \"Create an installation access token for an app\" endpoint.
\nYou must use an installation access token to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -16024,23 +16024,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -16117,13 +16117,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"lgpl-3.0\",\n \"name\": \"GNU Lesser General Public License v3.0\",\n \"spdx_id\": \"LGPL-3.0\",\n \"url\": \"https://api.github.com/licenses/lgpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"mpl-2.0\",\n \"name\": \"Mozilla Public License 2.0\",\n \"spdx_id\": \"MPL-2.0\",\n \"url\": \"https://api.github.com/licenses/mpl-2.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"agpl-3.0\",\n \"name\": \"GNU Affero General Public License v3.0\",\n \"spdx_id\": \"AGPL-3.0\",\n \"url\": \"https://api.github.com/licenses/agpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"unlicense\",\n \"name\": \"The Unlicense\",\n \"spdx_id\": \"Unlicense\",\n \"url\": \"https://api.github.com/licenses/unlicense\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"apache-2.0\",\n \"name\": \"Apache License 2.0\",\n \"spdx_id\": \"Apache-2.0\",\n \"url\": \"https://api.github.com/licenses/apache-2.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"gpl-3.0\",\n \"name\": \"GNU General Public License v3.0\",\n \"spdx_id\": \"GPL-3.0\",\n \"url\": \"https://api.github.com/licenses/gpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -16180,23 +16180,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"http://choosealicense.com/licenses/mit/\",\n \"description\": \"A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty.\",\n \"implementation\": \"Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders.\",\n \"permissions\": [\n \"commercial-use\",\n \"modifications\",\n \"distribution\",\n \"sublicense\",\n \"private-use\"\n ],\n \"conditions\": [\n \"include-copyright\"\n ],\n \"limitations\": [\n \"no-liability\"\n ],\n \"body\": \"\\n\\nThe MIT License (MIT)\\n\\nCopyright (c) [year] [fullname]\\n\\nPermission is hereby granted, free of charge, to any person obtaining a copy\\nof this software and associated documentation files (the \\\"Software\\\"), to deal\\nin the Software without restriction, including without limitation the rights\\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\\ncopies of the Software, and to permit persons to whom the Software is\\nfurnished to do so, subject to the following conditions:\\n\\nThe above copyright notice and this permission notice shall be included in all\\ncopies or substantial portions of the Software.\\n\\nTHE SOFTWARE IS PROVIDED \\\"AS IS\\\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\\nSOFTWARE.\\n\",\n \"featured\": true\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -16291,12 +16291,12 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
],
"bodyParameters": [
@@ -16388,20 +16388,20 @@
"categoryLabel": "Markdown",
"contentType": "text/plain",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "You must send Markdown as plain text (using a Content-Type header of text/plain or text/x-markdown) to this endpoint, rather than using JSON format. In raw mode, GitHub Flavored Markdown is not supported and Markdown will be rendered in plain format like a README.md file. Markdown content must be 400 KB or less.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "You must send Markdown as plain text (using a Content-Type header of text/plain or text/x-markdown) to this endpoint, rather than using JSON format. In raw mode, GitHub Flavored Markdown is not supported and Markdown will be rendered in plain format like a README.md file. Markdown content must be 400 KB or less.
"
+ ]
},
{
"verb": "get",
@@ -16446,13 +16446,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"verifiable_password_authentication\": true,\n \"packages\": [\n \"192.30.252.0/22\"\n ],\n \"dependabot\": [\n \"54.158.161.132\"\n ],\n \"installed_version\": \"3.1.0\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -16535,34 +16535,34 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -16674,28 +16674,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -16770,34 +16770,34 @@
"subcategoryLabel": "Notifications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Marks all notifications as \"read\" removes it from the default view on GitHub Enterprise Server. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub Enterprise Server will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
],
- "descriptionHTML": "Marks all notifications as \"read\" removes it from the default view on GitHub Enterprise Server. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub Enterprise Server will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"bodyParameters": [
{
"description": "Describes the last point that notifications were checked.
",
@@ -16876,23 +16876,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -16947,24 +16947,24 @@
"subcategoryLabel": "Notifications",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -17022,23 +17022,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/notifications/threads/1/subscription\",\n \"thread_url\": \"https://api.github.com/notifications/threads/1\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -17132,23 +17132,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/notifications/threads/1/subscription\",\n \"thread_url\": \"https://api.github.com/notifications/threads/1\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -17202,30 +17202,30 @@
"subcategory": "notifications",
"subcategoryLabel": "Notifications",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Mutes all future notifications for a conversation until you comment on the thread or get an @mention. If you are watching the repository of the thread, you will still receive notifications. To ignore future notifications for a repository you are watching, use the Set a thread subscription endpoint and set ignore to true.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Mutes all future notifications for a conversation until you comment on the thread or get an @mention. If you are watching the repository of the thread, you will still receive notifications. To ignore future notifications for a repository you are watching, use the Set a thread subscription endpoint and set ignore to true.
"
+ ]
},
{
"verb": "get",
@@ -17274,15 +17274,15 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get the octocat as ASCII art
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get the octocat as ASCII art
"
+ ]
},
{
"verb": "get",
@@ -17348,13 +17348,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -17423,7 +17423,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -17866,18 +17866,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"twitter_username\": \"github\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"type\": \"Organization\",\n \"total_private_repos\": 100,\n \"owned_private_repos\": 100,\n \"private_gists\": 81,\n \"disk_usage\": 10000,\n \"collaborators\": 8,\n \"billing_email\": \"mona@github.com\",\n \"plan\": {\n \"name\": \"Medium\",\n \"space\": 400,\n \"private_repos\": 20\n },\n \"default_repository_permission\": \"read\",\n \"members_can_create_repositories\": true,\n \"two_factor_requirement_enabled\": true,\n \"members_allowed_repository_creation_type\": \"all\",\n \"members_can_create_public_repositories\": false,\n \"members_can_create_private_repositories\": false,\n \"members_can_create_internal_repositories\": false,\n \"members_can_create_pages\": true,\n \"members_can_create_public_pages\": true,\n \"members_can_create_private_pages\": true,\n \"members_can_fork_private_repositories\": false,\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -17936,7 +17936,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled_repositories\": \"all\",\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/organizations/42/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -18038,14 +18038,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for repositories and allowed actions in an organization.
\nIf the organization belongs to an enterprise that has set restrictive permissions at the enterprise level, such as allowed_actions to selected actions, then you cannot override them for the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for repositories and allowed actions in an organization.
\nIf the organization belongs to an enterprise that has set restrictive permissions at the enterprise level, such as allowed_actions to selected actions, then you cannot override them for the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"type": "string",
@@ -18152,7 +18152,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
}
]
@@ -18241,14 +18241,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"description": "Required. List of repository IDs to enable for GitHub Actions.
",
@@ -18323,15 +18323,15 @@
"subcategory": "permissions",
"subcategoryLabel": "Permissions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
"
+ ]
},
{
"verb": "delete",
@@ -18391,15 +18391,15 @@
"subcategory": "permissions",
"subcategoryLabel": "Permissions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
"
+ ]
},
{
"verb": "get",
@@ -18456,7 +18456,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -18560,14 +18560,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in an organization. To use this endpoint, the organization permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nIf the organization belongs to an enterprise that has selected actions set at the enterprise level, then you cannot override any of the enterprise's allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the organization must belong to an enterprise. If the organization does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories in the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in an organization. To use this endpoint, the organization permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nIf the organization belongs to an enterprise that has selected actions set at the enterprise level, then you cannot override any of the enterprise's allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the organization must belong to an enterprise. If the organization does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories in the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -18667,7 +18667,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"runner_groups\": [\n {\n \"id\": 1,\n \"name\": \"Default\",\n \"visibility\": \"all\",\n \"default\": true,\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/1/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n },\n {\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": true,\n \"allows_public_repositories\": true\n },\n {\n \"id\": 3,\n \"name\": \"expensive-hardware\",\n \"visibility\": \"private\",\n \"default\": false,\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/3/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n }\n ]\n}\n
"
}
]
@@ -18876,7 +18876,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner-groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -18946,7 +18946,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -19103,7 +19103,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner-groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -19167,15 +19167,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a self-hosted runner group for an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a self-hosted runner group for an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -19262,7 +19262,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"organization\": null,\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
}
]
@@ -19361,14 +19361,14 @@
"subcategoryLabel": "Self hosted runner groups",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of repositories that have access to a self-hosted runner group configured in an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of repositories that have access to a self-hosted runner group configured in an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of repository IDs that can access the runner group.
",
@@ -19453,15 +19453,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -19531,15 +19531,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -19626,7 +19626,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -19725,14 +19725,14 @@
"subcategoryLabel": "Self hosted runner groups",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of self-hosted runners that are part of an organization runner group.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of self-hosted runners that are part of an organization runner group.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of runner IDs to add to the runner group.
",
@@ -19818,15 +19818,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -19897,15 +19897,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a self-hosted runner from a group configured in an organization. The runner is then returned to the default group.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a self-hosted runner from a group configured in an organization. The runner is then returned to the default group.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -19982,7 +19982,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -20042,7 +20042,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"os\": \"osx\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-osx-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-osx-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm-2.164.0.tar.gz\"\n },\n {\n \"os\": \"win\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-win-x64-2.164.0.zip\",\n \"filename\": \"actions-runner-win-x64-2.164.0.zip\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm64-2.164.0.tar.gz\"\n }\n]\n
"
}
]
@@ -20102,7 +20102,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"LLBF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-22T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -20162,7 +20162,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"AABF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-29T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -20232,7 +20232,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 23,\n \"name\": \"MBP\",\n \"os\": \"macos\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
}
]
@@ -20296,15 +20296,15 @@
"subcategory": "self-hosted-runners",
"subcategoryLabel": "Self hosted runners",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from an organization. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from an organization. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -20381,7 +20381,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"secrets\": [\n {\n \"name\": \"GIST_ID\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"private\"\n },\n {\n \"name\": \"DEPLOY_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"all\"\n },\n {\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"selected\",\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories\"\n }\n ]\n}\n
"
}
]
@@ -20441,7 +20441,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -20511,7 +20511,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"selected\",\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories\"\n}\n
"
}
]
@@ -20554,7 +20554,7 @@
}
],
"summary": "Create or update an organization secret",
- "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -20649,15 +20649,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to\nuse this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to\nuse this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -20765,15 +20765,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in an organization using the secret name. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in an organization using the secret name. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -20860,7 +20860,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n }\n ]\n}\n
"
}
]
@@ -20957,14 +20957,14 @@
"subcategoryLabel": "Secrets",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces all repositories for an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces all repositories for an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"bodyParameters": [
{
"type": "array of integers",
@@ -21048,20 +21048,20 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "No Content when repository was added to the selected list"
+ "description": "No Content when repository was added to the selected list
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when visibility type is not set to selected"
+ "description": "Conflict when visibility type is not set to selected
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -21131,20 +21131,20 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when repository was removed from the selected list"
+ "description": "Response when repository was removed from the selected list
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when visibility type not set to selected"
+ "description": "Conflict when visibility type not set to selected
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -21263,7 +21263,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"@timestamp\": 1606929874512,\n \"action\": \"team.add_member\",\n \"actor\": \"octocat\",\n \"created_at\": 1606929874512,\n \"_document_id\": \"xJJFlFOhQ6b-5vaAFy9Rjw\",\n \"org\": \"octo-corp\",\n \"team\": \"octo-corp/example-team\",\n \"user\": \"monalisa\"\n },\n {\n \"@timestamp\": 1606507117008,\n \"action\": \"org.create\",\n \"actor\": \"octocat\",\n \"created_at\": 1606507117008,\n \"_document_id\": \"Vqvg6kZ4MYqwWRKFDzlMoQ\",\n \"org\": \"octocat-test-org\"\n },\n {\n \"@timestamp\": 1605719148837,\n \"action\": \"repo.destroy\",\n \"actor\": \"monalisa\",\n \"created_at\": 1605719148837,\n \"_document_id\": \"LwW2vpJZCDS-WUmo9Z-ifw\",\n \"org\": \"mona-org\",\n \"repo\": \"mona-org/mona-test-repo\",\n \"visibility\": \"private\"\n }\n]\n
"
}
]
@@ -21338,14 +21338,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -21422,13 +21422,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -21703,18 +21703,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -21972,13 +21972,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -22216,18 +22216,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"name\": \"web\",\n \"events\": [\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -22444,19 +22444,19 @@
"subcategoryLabel": "Webhooks",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -22522,7 +22522,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -22654,14 +22654,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for an organization. To update more information about the webhook, including the active state and events, use \"Update an organization webhook .\"
\nAccess tokens must have the admin:org_hook scope, and GitHub Apps must have the organization_hooks:write permission.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -22711,6 +22703,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -22771,20 +22771,20 @@
"subcategory": "webhooks",
"subcategoryLabel": "Webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the hook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the hook.
"
+ ]
},
{
"verb": "get",
@@ -22839,7 +22839,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
}
]
@@ -22917,7 +22917,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"installations\": [\n {\n \"id\": 25381,\n \"account\": {\n \"login\": \"octo-org\",\n \"id\": 6811672,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjY4MTE2NzI=\",\n \"avatar_url\": \"https://avatars3.githubusercontent.com/u/6811672?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octo-org\",\n \"html_url\": \"https://github.com/octo-org\",\n \"followers_url\": \"https://api.github.com/users/octo-org/followers\",\n \"following_url\": \"https://api.github.com/users/octo-org/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octo-org/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octo-org/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octo-org/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octo-org/orgs\",\n \"repos_url\": \"https://api.github.com/users/octo-org/repos\",\n \"events_url\": \"https://api.github.com/users/octo-org/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octo-org/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"selected\",\n \"access_tokens_url\": \"https://api.github.com/app/installations/25381/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/octo-org/settings/installations/25381\",\n \"app_id\": 2218,\n \"target_id\": 6811672,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"deployments\": \"write\",\n \"metadata\": \"read\",\n \"pull_requests\": \"read\",\n \"statuses\": \"read\"\n },\n \"events\": [\n \"deployment\",\n \"deployment_status\"\n ],\n \"created_at\": \"2017-05-16T08:47:09.000-07:00\",\n \"updated_at\": \"2017-06-06T11:23:23.000-07:00\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n ]\n}\n
"
}
]
@@ -23093,13 +23093,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -23209,18 +23209,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response if requester is not an organization member"
+ "description": "Response if requester is not an organization member
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -23282,25 +23282,25 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Check if a user is, publicly or privately, a member of the organization.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if requester is an organization member and user is a member"
+ "description": "Response if requester is an organization member and user is a member
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response if requester is not an organization member"
+ "description": "Response if requester is not an organization member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if requester is an organization member and user is not a member"
+ "description": "Not Found if requester is an organization member and user is not a member
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Check if a user is, publicly or privately, a member of the organization.
"
+ ]
},
{
"verb": "delete",
@@ -23360,20 +23360,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removing a user from this list will remove them from all teams and they will no longer have any access to the organization's repositories.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removing a user from this list will remove them from all teams and they will no longer have any access to the organization's repositories.
"
+ ]
},
{
"verb": "get",
@@ -23445,12 +23445,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -23566,12 +23566,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -23633,25 +23633,25 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "In order to remove a user's membership with an organization, the authenticated user must be an organization owner.
\nIf the specified user is an active member of the organization, this will remove them from the organization. If the specified user has been invited to the organization, this will cancel their invitation. The specified user will receive an email notification in both cases.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "In order to remove a user's membership with an organization, the authenticated user must be an organization owner.
\nIf the specified user is an active member of the organization, this will remove them from the organization. If the specified user has been invited to the organization, this will cancel their invitation. The specified user will receive an email notification in both cases.
"
+ ]
},
{
"verb": "get",
@@ -23743,7 +23743,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -23806,30 +23806,30 @@
"subcategory": "outside-collaborators",
"subcategoryLabel": "Outside collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "When an organization member is converted to an outside collaborator, they'll only have access to the repositories that their current team membership allows. The user will no longer be a member of the organization. For more information, see \"Converting an organization member to an outside collaborator\".
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "User is getting converted asynchronously"
+ "description": "User is getting converted asynchronously
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "User was converted"
+ "description": "User was converted
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if user is the last owner of the organization or not a member of the organization"
+ "description": "Forbidden if user is the last owner of the organization or not a member of the organization
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "When an organization member is converted to an outside collaborator, they'll only have access to the repositories that their current team membership allows. The user will no longer be a member of the organization. For more information, see \"Converting an organization member to an outside collaborator\".
"
+ ]
},
{
"verb": "delete",
@@ -23895,12 +23895,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if user is a member of the organization",
+ "description": "Unprocessable Entity if user is a member of the organization
",
"payload": "{\n \"message\": \"You cannot specify an organization member to remove as an outside collaborator.\",\n \"documentation_url\": \"https://docs.github.com/enterprise-server@3.1/rest/reference/orgs#remove-outside-collaborator\"\n}\n
"
}
]
@@ -24018,7 +24018,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/admin/pre-receive-hooks/42\",\n \"allow_downstream_configuration\": true\n }\n]\n
"
}
]
@@ -24095,7 +24095,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/admin/pre-receive-hooks/42\",\n \"allow_downstream_configuration\": true\n}\n
"
}
]
@@ -24225,7 +24225,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"enabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\",\n \"allow_downstream_configuration\": false\n}\n
"
}
]
@@ -24302,7 +24302,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/admin/pre-receive-hooks/42\",\n \"allow_downstream_configuration\": true\n}\n
"
}
]
@@ -24402,13 +24402,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -24528,33 +24528,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -24633,7 +24633,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -24697,19 +24697,19 @@
"subcategoryLabel": "Members",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if user is a public member"
+ "description": "Response if user is a public member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if user is not a public member"
+ "description": "Not Found if user is not a public member
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -24769,20 +24769,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The user can publicize their own membership. (A user cannot publicize the membership for another user.)
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The user can publicize their own membership. (A user cannot publicize the membership for another user.)
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -24843,14 +24843,14 @@
"subcategoryLabel": "Members",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -24986,7 +24986,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -25417,18 +25417,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -25505,13 +25505,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -25749,18 +25749,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -25827,13 +25827,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -26031,7 +26031,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
}
]
@@ -26093,15 +26093,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "To delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "To delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}.
"
+ ]
},
{
"verb": "get",
@@ -26220,7 +26220,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -26376,7 +26376,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -26462,7 +26462,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -26601,7 +26601,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 1,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Welcome to our first team post\",\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -26674,15 +26674,15 @@
"subcategory": "discussions",
"subcategoryLabel": "Discussions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Delete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Delete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}.
"
+ ]
},
{
"verb": "get",
@@ -26800,7 +26800,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -26925,7 +26925,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -27020,7 +27020,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -27153,7 +27153,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like pineapples?\",\n \"body_html\": \"<p>Do you like pineapples?</p>\",\n \"body_version\": \"e6907b24d9c93cc0c5024a7af5888116\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -27235,15 +27235,15 @@
"subcategory": "discussion-comments",
"subcategoryLabel": "Discussion comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}.
"
+ ]
},
{
"verb": "get",
@@ -27372,7 +27372,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -27522,13 +27522,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -27623,15 +27623,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion comment. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion comment. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -27751,7 +27751,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -27892,13 +27892,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -27984,15 +27984,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -28095,7 +28095,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -28180,7 +28180,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if user has no team membership"
+ "description": "if user has no team membership
"
}
]
},
@@ -28306,12 +28306,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team
"
}
]
},
@@ -28383,20 +28383,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/memberships/{username}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/memberships/{username}.
"
+ ]
},
{
"verb": "get",
@@ -28487,7 +28487,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n }\n]\n
"
}
]
@@ -28570,13 +28570,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if project is not managed by this team"
+ "description": "Not Found if project is not managed by this team
"
}
]
},
@@ -28701,12 +28701,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if the project is not owned by the organization",
+ "description": "Forbidden if the project is not owned by the organization
",
"payload": "{\n \"message\": \"Must have admin rights to Repository.\",\n \"documentation_url\": \"https://docs.github.com/enterprise-server@3.1/rest/reference/teams#add-or-update-team-project-permissions\"\n}\n
"
}
]
@@ -28777,15 +28777,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. This endpoint removes the project from the team, but does not delete the project.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/projects/{project_id}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. This endpoint removes the project from the team, but does not delete the project.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/projects/{project_id}.
"
+ ]
},
{
"verb": "get",
@@ -28870,7 +28870,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -28956,18 +28956,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Alternative response with repository permissions",
+ "description": "Alternative response with repository permissions
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"maintain\": false,\n \"push\": false,\n \"triage\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"triage\": false,\n \"push\": false,\n \"maintain\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if team has permission for the repository. This is the response when the repository media type hasn't been provded in the Accept header."
+ "description": "Response if team has permission for the repository. This is the response when the repository media type hasn't been provded in the Accept header.
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team does not have permission for the repository"
+ "description": "Not Found if team does not have permission for the repository
"
}
]
},
@@ -29076,14 +29076,14 @@
"categoryLabel": "Teams",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "To add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization. Note that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nNote: You can also specify a team by org_id and team_id using the route PUT /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
\nFor more information about the permission levels, see \"Repository permission levels for an organization\".
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "To add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization. Note that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nNote: You can also specify a team by org_id and team_id using the route PUT /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
\nFor more information about the permission levels, see \"Repository permission levels for an organization\".
",
"bodyParameters": [
{
"type": "string",
@@ -29179,15 +29179,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. This does not delete the repository, it just removes it from the team.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. This does not delete the repository, it just removes it from the team.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
"
+ ]
},
{
"verb": "get",
@@ -29272,7 +29272,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if child teams exist",
+ "description": "if child teams exist
",
"payload": "[\n {\n \"id\": 2,\n \"node_id\": \"MDQ6VGVhbTI=\",\n \"url\": \"https://api.github.com/teams/2\",\n \"name\": \"Original Roster\",\n \"slug\": \"original-roster\",\n \"description\": \"Started it all.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/2/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/2/repos\",\n \"parent\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n },\n \"html_url\": \"https://github.com/orgs/rails/teams/core\"\n }\n]\n
"
}
]
@@ -29340,28 +29340,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -29484,33 +29484,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -29572,34 +29572,34 @@
"subcategoryLabel": "Cards",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -29700,32 +29700,32 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Response"
+ "description": "Response
"
}
],
"bodyParameters": [
@@ -29815,28 +29815,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -29940,23 +29940,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -30018,29 +30018,29 @@
"subcategoryLabel": "Columns",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -30141,23 +30141,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -30336,33 +30336,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Response"
+ "description": "Response
"
}
]
},
@@ -30455,27 +30455,27 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -30551,23 +30551,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -30754,38 +30754,38 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if the authenticated user does not have access to the project"
+ "description": "Not Found if the authenticated user does not have access to the project
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -30842,40 +30842,40 @@
"category": "projects",
"categoryLabel": "Projects",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a project board. Returns a 404 Not Found status if projects are disabled.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Delete Success"
+ "description": "Delete Success
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a project board. Returns a 404 Not Found status if projects are disabled.
"
+ ]
},
{
"verb": "get",
@@ -30975,33 +30975,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -31100,39 +31100,39 @@
"subcategoryLabel": "Collaborators",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Adds a collaborator to an organization project and sets their permission level. You must be an organization owner or a project admin to add a collaborator.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Adds a collaborator to an organization project and sets their permission level. You must be an organization owner or a project admin to add a collaborator.
",
"bodyParameters": [
{
"description": "The permission to grant the collaborator.
",
@@ -31217,40 +31217,40 @@
"subcategory": "collaborators",
"subcategoryLabel": "Collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a collaborator from an organization project. You must be an organization owner or a project admin to remove a collaborator.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a collaborator from an organization project. You must be an organization owner or a project admin to remove a collaborator.
"
+ ]
},
{
"verb": "get",
@@ -31323,33 +31323,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -31435,23 +31435,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -31554,28 +31554,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -31622,18 +31622,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"resources\": {\n \"core\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1372700873,\n \"used\": 1\n },\n \"search\": {\n \"limit\": 30,\n \"remaining\": 18,\n \"reset\": 1372697452,\n \"used\": 12\n },\n \"graphql\": {\n \"limit\": 5000,\n \"remaining\": 4993,\n \"reset\": 1372700389,\n \"used\": 7\n },\n \"integration_manifest\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1551806725,\n \"used\": 1\n },\n \"code_scanning_upload\": {\n \"limit\": 500,\n \"remaining\": 499,\n \"reset\": 1551806725,\n \"used\": 1\n }\n },\n \"rate\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1372700873,\n \"used\": 1\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -31693,35 +31693,35 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Reactions API. We recommend migrating your existing code to use the new delete reactions endpoints. For more information, see this blog post.
\nOAuth access tokens require the write:discussion scope, when deleting a team discussion or team discussion comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Reactions API. We recommend migrating your existing code to use the new delete reactions endpoints. For more information, see this blog post.
\nOAuth access tokens require the write:discussion scope, when deleting a team discussion or team discussion comment.
"
+ ]
},
{
"verb": "get",
@@ -31808,17 +31808,17 @@
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -32238,28 +32238,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"push\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"organization\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"parent\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"source\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n}\n
"
},
{
"httpStatusCode": "307",
"httpStatusMessage": "Temporary Redirect",
- "description": "Temporary Redirect"
+ "description": "Temporary Redirect
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -32325,23 +32325,23 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "307",
"httpStatusMessage": "Temporary Redirect",
- "description": "Temporary Redirect"
+ "description": "Temporary Redirect
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "If an organization owner has configured the organization to prevent members from deleting organization-owned repositories, a member will get this response:",
+ "description": "If an organization owner has configured the organization to prevent members from deleting organization-owned repositories, a member will get this response:
",
"payload": "{\n \"message\": \"Organization members cannot delete repositories.\",\n \"documentation_url\": \"https://docs.github.com/enterprise-server@3.1/rest/reference/repos#delete-a-repository\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -32429,7 +32429,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"artifacts\": [\n {\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n },\n {\n \"id\": 13,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMw==\",\n \"name\": \"\",\n \"size_in_bytes\": 453,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -32508,7 +32508,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-01-21T14:59:22Z\",\n \"updated_at\": \"2020-01-21T14:59:22Z\"\n}\n
"
}
]
@@ -32581,15 +32581,15 @@
"subcategory": "artifacts",
"subcategoryLabel": "Artifacts",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes an artifact for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes an artifact for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -32668,15 +32668,15 @@
"subcategory": "artifacts",
"subcategoryLabel": "Artifacts",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download an archive for a repository. This URL expires after 1 minute. Look for Location: in\nthe response header to find the URL for the download. The :archive_format must be zip. Anyone with read access to\nthe repository can use this endpoint. If the repository is private you must use an access token with the repo scope.\nGitHub Apps must have the actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download an archive for a repository. This URL expires after 1 minute. Look for Location: in\nthe response header to find the URL for the download. The :archive_format must be zip. Anyone with read access to\nthe repository can use this endpoint. If the repository is private you must use an access token with the repo scope.\nGitHub Apps must have the actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -32752,7 +32752,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 399444496,\n \"run_id\": 29679449,\n \"run_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\",\n \"node_id\": \"MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\",\n \"head_sha\": \"f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/runs/399444496\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"started_at\": \"2020-01-20T17:42:40Z\",\n \"completed_at\": \"2020-01-20T17:44:39Z\",\n \"name\": \"build\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 1,\n \"started_at\": \"2020-01-20T09:42:40.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:41.000-08:00\"\n },\n {\n \"name\": \"Run actions/checkout@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 2,\n \"started_at\": \"2020-01-20T09:42:41.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Set up Ruby\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 3,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Run actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 4,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:48.000-08:00\"\n },\n {\n \"name\": \"Install Bundler\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 5,\n \"started_at\": \"2020-01-20T09:42:48.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:52.000-08:00\"\n },\n {\n \"name\": \"Install Gems\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 6,\n \"started_at\": \"2020-01-20T09:42:52.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:53.000-08:00\"\n },\n {\n \"name\": \"Run Tests\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 7,\n \"started_at\": \"2020-01-20T09:42:53.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:59.000-08:00\"\n },\n {\n \"name\": \"Deploy to Heroku\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 8,\n \"started_at\": \"2020-01-20T09:42:59.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Post actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 16,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Complete job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 17,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n }\n ],\n \"check_run_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\"\n}\n
"
}
]
@@ -32825,15 +32825,15 @@
"subcategory": "workflow-jobs",
"subcategoryLabel": "Workflow jobs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a plain text file of logs for a workflow job. This link expires after 1 minute. Look\nfor Location: in the response header to find the URL for the download. Anyone with read access to the repository can\nuse this endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must\nhave the actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a plain text file of logs for a workflow job. This link expires after 1 minute. Look\nfor Location: in the response header to find the URL for the download. Anyone with read access to the repository can\nuse this endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must\nhave the actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -32899,7 +32899,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled\": true,\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/repositories/42/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -33005,14 +33005,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for enabling GitHub Actions and allowed actions in the repository.
\nIf the repository belongs to an organization or enterprise that has set restrictive permissions at the organization or enterprise levels, such as allowed_actions to selected actions, then you cannot override them for the repository.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for enabling GitHub Actions and allowed actions in the repository.
\nIf the repository belongs to an organization or enterprise that has set restrictive permissions at the organization or enterprise levels, such as allowed_actions to selected actions, then you cannot override them for the repository.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -33103,7 +33103,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -33216,14 +33216,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in a repository. To use this endpoint, the repository permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for a repository.\"
\nIf the repository belongs to an organization or enterprise that has selected actions set at the organization or enterprise levels, then you cannot override any of the allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the repository must belong to an enterprise. If the repository does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in a repository. To use this endpoint, the repository permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for a repository.\"
\nIf the repository belongs to an organization or enterprise that has selected actions set at the organization or enterprise levels, then you cannot override any of the allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the repository must belong to an enterprise. If the repository does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -33332,7 +33332,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -33401,7 +33401,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"os\": \"osx\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-osx-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-osx-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-x64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-x64-2.164.0.tar.gz\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm-2.164.0.tar.gz\"\n },\n {\n \"os\": \"win\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-win-x64-2.164.0.zip\",\n \"filename\": \"actions-runner-win-x64-2.164.0.zip\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm64-2.164.0.tar.gz\",\n \"filename\": \"actions-runner-linux-arm64-2.164.0.tar.gz\"\n }\n]\n
"
}
]
@@ -33470,7 +33470,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"LLBF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-22T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -33539,7 +33539,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"AABF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-29T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -33618,7 +33618,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 23,\n \"name\": \"MBP\",\n \"os\": \"macos\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
}
]
@@ -33691,15 +33691,15 @@
"subcategory": "self-hosted-runners",
"subcategoryLabel": "Self hosted runners",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from a repository. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the repo\nscope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from a repository. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the repo\nscope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -33861,7 +33861,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"workflow_runs\": [\n {\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n }\n ]\n}\n
"
}
]
@@ -33951,7 +33951,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"check_suite_id\": 42,\n \"check_suite_node_id\": \"MDEwOkNoZWNrU3VpdGU0Mg==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n}\n
"
}
]
@@ -34024,15 +34024,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Delete a specific workflow run. Anyone with write access to the repository can use this endpoint. If the repository is\nprivate you must use an access token with the repo scope. GitHub Apps must have the actions:write permission to use\nthis endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Delete a specific workflow run. Anyone with write access to the repository can use this endpoint. If the repository is\nprivate you must use an access token with the repo scope. GitHub Apps must have the actions:write permission to use\nthis endpoint.
"
+ ]
},
{
"verb": "get",
@@ -34128,7 +34128,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"artifacts\": [\n {\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n },\n {\n \"id\": 13,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMw==\",\n \"name\": \"\",\n \"size_in_bytes\": 453,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -34201,15 +34201,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Cancels a workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Cancels a workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -34320,7 +34320,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"jobs\": [\n {\n \"id\": 399444496,\n \"run_id\": 29679449,\n \"run_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\",\n \"node_id\": \"MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\",\n \"head_sha\": \"f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/runs/399444496\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"started_at\": \"2020-01-20T17:42:40Z\",\n \"completed_at\": \"2020-01-20T17:44:39Z\",\n \"name\": \"build\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 1,\n \"started_at\": \"2020-01-20T09:42:40.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:41.000-08:00\"\n },\n {\n \"name\": \"Run actions/checkout@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 2,\n \"started_at\": \"2020-01-20T09:42:41.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Set up Ruby\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 3,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Run actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 4,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:48.000-08:00\"\n },\n {\n \"name\": \"Install Bundler\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 5,\n \"started_at\": \"2020-01-20T09:42:48.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:52.000-08:00\"\n },\n {\n \"name\": \"Install Gems\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 6,\n \"started_at\": \"2020-01-20T09:42:52.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:53.000-08:00\"\n },\n {\n \"name\": \"Run Tests\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 7,\n \"started_at\": \"2020-01-20T09:42:53.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:59.000-08:00\"\n },\n {\n \"name\": \"Deploy to Heroku\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 8,\n \"started_at\": \"2020-01-20T09:42:59.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Post actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 16,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Complete job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 17,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n }\n ],\n \"check_run_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\"\n }\n ]\n}\n
"
}
]
@@ -34393,15 +34393,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download an archive of log files for a workflow run. This link expires after 1 minute. Look for\nLocation: in the response header to find the URL for the download. Anyone with read access to the repository can use\nthis endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must have\nthe actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download an archive of log files for a workflow run. This link expires after 1 minute. Look for\nLocation: in the response header to find the URL for the download. Anyone with read access to the repository can use\nthis endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must have\nthe actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -34471,15 +34471,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes all logs for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes all logs for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -34551,15 +34551,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Re-runs your workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Re-runs your workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -34645,7 +34645,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"secrets\": [\n {\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n },\n {\n \"name\": \"GIST_ID\",\n \"created_at\": \"2020-01-10T10:59:22Z\",\n \"updated_at\": \"2020-01-11T11:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -34714,7 +34714,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -34793,7 +34793,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n}\n
"
}
]
@@ -34845,7 +34845,7 @@
}
],
"summary": "Create or update a repository secret",
- "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -34906,15 +34906,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -35005,15 +35005,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in a repository using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in a repository using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -35099,7 +35099,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"workflows\": [\n {\n \"id\": 161335,\n \"node_id\": \"MDg6V29ya2Zsb3cxNjEzMzU=\",\n \"name\": \"CI\",\n \"path\": \".github/workflows/blank.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/161335\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/161335\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/CI/badge.svg\"\n },\n {\n \"id\": 269289,\n \"node_id\": \"MDE4OldvcmtmbG93IFNlY29uZGFyeTI2OTI4OQ==\",\n \"name\": \"Linter\",\n \"path\": \".github/workflows/linter.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/269289\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/269289\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/Linter/badge.svg\"\n }\n ]\n}\n
"
}
]
@@ -35185,7 +35185,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 161335,\n \"node_id\": \"MDg6V29ya2Zsb3cxNjEzMzU=\",\n \"name\": \"CI\",\n \"path\": \".github/workflows/blank.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/161335\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/161335\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/CI/badge.svg\"\n}\n
"
}
]
@@ -35265,15 +35265,15 @@
"subcategory": "workflows",
"subcategoryLabel": "Workflows",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Disables a workflow and sets the state of the workflow to disabled_manually. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Disables a workflow and sets the state of the workflow to disabled_manually. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -35395,14 +35395,14 @@
"subcategoryLabel": "Workflows",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "You can use this endpoint to manually trigger a GitHub Actions workflow run. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must configure your GitHub Actions workflow to run when the workflow_dispatch webhook event occurs. The inputs are configured in the workflow file. For more information about how to configure the workflow_dispatch event in the workflow file, see \"Events that trigger workflows.\"
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint. For more information, see \"Creating a personal access token for the command line.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "You can use this endpoint to manually trigger a GitHub Actions workflow run. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must configure your GitHub Actions workflow to run when the workflow_dispatch webhook event occurs. The inputs are configured in the workflow file. For more information about how to configure the workflow_dispatch event in the workflow file, see \"Events that trigger workflows.\"
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint. For more information, see \"Creating a personal access token for the command line.\"
",
"bodyParameters": [
{
"type": "string",
@@ -35503,15 +35503,15 @@
"subcategory": "workflows",
"subcategoryLabel": "Workflows",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Enables a workflow and sets the state of the workflow to active. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Enables a workflow and sets the state of the workflow to active. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -35690,7 +35690,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"workflow_runs\": [\n {\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n }\n ]\n}\n
"
}
]
@@ -35779,13 +35779,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -35856,20 +35856,20 @@
"subcategory": "assignees",
"subcategoryLabel": "Assignees",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Checks if a user has permission to be assigned to an issue in this repository.
\nIf the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
\nOtherwise a 404 status code is returned.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "If the `assignee` can be assigned to issues in the repository, a `204` header with no content is returned."
+ "description": "If the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Otherwise a `404` status code is returned."
+ "description": "Otherwise a 404 status code is returned.
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Checks if a user has permission to be assigned to an issue in this repository.
\nIf the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
\nOtherwise a 404 status code is returned.
"
+ ]
},
{
"verb": "get",
@@ -35963,13 +35963,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"protected\": true,\n \"protection\": {\n \"required_status_checks\": {\n \"enforcement_level\": \"non_admins\",\n \"contexts\": [\n \"ci-test\",\n \"linter\"\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/octocat/hello-world/branches/master/protection\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -36041,29 +36041,29 @@
"categoryLabel": "Branches",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -36147,13 +36147,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection\",\n \"required_status_checks\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\",\n \"enforcement_level\": \"non_admins\"\n },\n \"enforce_admins\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n },\n \"required_pull_request_reviews\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n },\n \"restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"apps_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"apps\": [\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n ]\n },\n \"required_linear_history\": {\n \"enabled\": true\n },\n \"allow_force_pushes\": {\n \"enabled\": true\n },\n \"allow_deletions\": {\n \"enabled\": true\n },\n \"required_conversation_resolution\": {\n \"enabled\": true\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -36906,29 +36906,29 @@
"subcategoryLabel": "Branch protection",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nProtecting a branch requires admin or owner permissions to the repository.
\nNote: Passing new arrays of users and teams replaces their previous values.
\nNote: The list of users, apps, and teams in total is limited to 100 items.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nProtecting a branch requires admin or owner permissions to the repository.
\nNote: Passing new arrays of users and teams replaces their previous values.
\nNote: The list of users, apps, and teams in total is limited to 100 items.
",
"bodyParameters": [
{
"type": "object or nullable",
@@ -37610,20 +37610,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -37700,7 +37700,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n}\n
"
}
]
@@ -37780,7 +37780,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n}\n
"
}
]
@@ -37854,20 +37854,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nRemoving admin enforcement requires admin or owner permissions to the repository and branch protection to be enabled.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nRemoving admin enforcement requires admin or owner permissions to the repository and branch protection to be enabled.
"
+ ]
},
{
"verb": "get",
@@ -37951,7 +37951,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n}\n
"
}
]
@@ -38165,13 +38165,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -38340,20 +38340,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -38437,13 +38437,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures\",\n \"enabled\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -38529,13 +38529,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures\",\n \"enabled\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -38615,20 +38615,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nWhen authenticated with admin or owner permissions to the repository, you can use this endpoint to disable required signed commits on a branch. You must enable branch protection to require signed commits.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nWhen authenticated with admin or owner permissions to the repository, you can use this endpoint to disable required signed commits on a branch. You must enable branch protection to require signed commits.
"
+ ]
},
{
"verb": "get",
@@ -38705,13 +38705,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"strict\": true,\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -38854,18 +38854,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"strict\": true,\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -38938,15 +38938,15 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -39023,13 +39023,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -39166,23 +39166,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\",\n \"continuous-integration/jenkins\"\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -39319,18 +39319,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -39466,18 +39466,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -39556,13 +39556,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"apps_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"apps\": [\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -39635,15 +39635,15 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nDisables the ability to restrict who can push to this branch.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nDisables the ability to restrict who can push to this branch.
"
+ ]
},
{
"verb": "get",
@@ -39720,13 +39720,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -39862,13 +39862,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40004,13 +40004,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40145,13 +40145,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40230,13 +40230,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -40373,13 +40373,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40516,13 +40516,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40658,13 +40658,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40743,13 +40743,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -40885,13 +40885,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -41027,13 +41027,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -41168,13 +41168,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -41289,23 +41289,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"node_id\": \"MDY6Q29tbWl0N2ZkMWE2MGIwMWY5MWIzMTRmNTk5NTVhNGU0ZDRlODBkOGVkZjExZA==\",\n \"commit\": {\n \"author\": {\n \"name\": \"The Octocat\",\n \"date\": \"2012-03-06T15:06:50-08:00\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"tree\": {\n \"sha\": \"b4eecafa9be2f2006ce1b709d6857b07069b4608\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/b4eecafa9be2f2006ce1b709d6857b07069b4608\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"date\": \"2012-03-06T15:06:50-08:00\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n },\n \"comment_count\": 0\n },\n \"author\": {\n \"gravatar_id\": \"\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/7ad39074b0584bc555d0417ae3e7d974?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"id\": 583231,\n \"login\": \"octocat\",\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"parents\": [\n {\n \"sha\": \"553c2077f0edc3d5dc5d17262f6aa498e69d6f8e\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/553c2077f0edc3d5dc5d17262f6aa498e69d6f8e\"\n },\n {\n \"sha\": \"762941318ee16e59dabbacb1b4049eec22f0d303\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/762941318ee16e59dabbacb1b4049eec22f0d303\"\n }\n ],\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"committer\": {\n \"gravatar_id\": \"\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/7ad39074b0584bc555d0417ae3e7d974?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"id\": 583231,\n \"login\": \"octocat\",\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\"\n },\n \"_links\": {\n \"html\": \"https://github.com/octocat/Hello-World/tree/master\",\n \"self\": \"https://api.github.com/repos/octocat/Hello-World/branches/master\"\n },\n \"protected\": true,\n \"protection\": {\n \"required_status_checks\": {\n \"enforcement_level\": \"non_admins\",\n \"contexts\": [\n \"ci-test\",\n \"linter\"\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/octocat/hello-world/branches/master/protection\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -43463,7 +43463,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n}\n
"
}
]
@@ -44557,7 +44557,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n}\n
"
}
],
@@ -45597,7 +45597,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"path\": \"README.md\",\n \"start_line\": 2,\n \"end_line\": 2,\n \"start_column\": 5,\n \"end_column\": 10,\n \"annotation_level\": \"warning\",\n \"title\": \"Spell Checker\",\n \"message\": \"Check your spelling for 'banaas'.\",\n \"raw_details\": \"Do you mean 'bananas' or 'banana'?\",\n \"blob_href\": \"https://api.github.com/repos/github/rest-api-description/git/blobs/abc\"\n }\n]\n
"
}
]
@@ -45704,13 +45704,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "when the suite already existed",
+ "description": "when the suite already existed
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when the suite was created",
+ "description": "Response when the suite was created
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
}
]
@@ -45863,7 +45863,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"preferences\": {\n \"auto_trigger_checks\": [\n {\n \"app_id\": 2,\n \"setting\": true\n },\n {\n \"app_id\": 4,\n \"setting\": false\n }\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n }\n}\n
"
}
],
@@ -46008,7 +46008,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
}
]
@@ -46147,7 +46147,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_runs\": [\n {\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -46220,15 +46220,15 @@
"subcategory": "suites",
"subcategoryLabel": "Suites",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check suite, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check suite, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
"
+ ]
},
{
"verb": "get",
@@ -46363,23 +46363,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"number\": 4,\n \"created_at\": \"2020-02-13T12:29:18Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/4\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/4\",\n \"state\": \"open\",\n \"dismissed_by\": null,\n \"dismissed_at\": null,\n \"dismissed_reason\": null,\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"description\": \"Arbitrary file write during zip extraction\",\n \"name\": \"js/zipslip\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"open\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/4/instances\"\n },\n {\n \"number\": 3,\n \"created_at\": \"2020-02-13T12:29:18Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/3\",\n \"state\": \"dismissed\",\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-02-14T12:29:18Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"description\": \"Arbitrary file write during zip extraction\",\n \"name\": \"js/zipslip\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"open\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"lib/ab12-gen.js\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": []\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -46457,23 +46457,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-06-19T11:21:34Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/42\",\n \"state\": \"dismissed\",\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 54933897,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-02-14T12:29:18Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"security_severity_level\": \"high\",\n \"description\": \"Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\",\n \"name\": \"js/zipslip\",\n \"full_description\": \"Extracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten.\",\n \"tags\": [\n \"security\",\n \"external/cwe/cwe-022\"\n ],\n \"help\": \"# Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\\\\nExtracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten ...\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"dismissed\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -46629,23 +46629,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-08-25T21:28:36Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/42\",\n \"state\": \"dismissed\",\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-09-02T22:34:56Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"security_severity_level\": \"high\",\n \"description\": \"Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\",\n \"name\": \"js/zipslip\",\n \"full_description\": \"Extracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten.\",\n \"tags\": [\n \"security\",\n \"external/cwe/cwe-022\"\n ],\n \"help\": \"# Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\\\\nExtracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten ...\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"dismissed\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -46754,23 +46754,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"\",\n \"state\": \"open\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"lib/ab12-gen.js\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"library\"\n ]\n },\n {\n \"ref\": \"refs/pull/3740/merge\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"\",\n \"category\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"state\": \"fixed\",\n \"commit_sha\": \"b09da05606e27f463a2b49287684b4ae777092f2\",\n \"message\": {\n \"text\": \"This suffix check is missing a length comparison to correctly handle lastIndexOf returning -1.\"\n },\n \"location\": {\n \"path\": \"app/script.js\",\n \"start_line\": 2,\n \"end_line\": 2,\n \"start_column\": 10,\n \"end_column\": 50\n },\n \"classifications\": [\n \"source\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -46901,23 +46901,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/main\",\n \"commit_sha\": \"d99612c3e1f2970085cfbaeadf8f010ef69bad83\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:analyze\",\n \"environment\": \"{\\\"language\\\":\\\"python\\\"}\",\n \"error\": \"\",\n \"category\": \".github/workflows/codeql-analysis.yml:analyze/language:python\",\n \"created_at\": \"2020-08-27T15:05:21Z\",\n \"results_count\": 17,\n \"rules_count\": 49,\n \"id\": 201,\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/201\",\n \"sarif_id\": \"6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53\",\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"deletable\": true,\n \"warning\": \"\"\n },\n {\n \"ref\": \"refs/heads/my-branch\",\n \"commit_sha\": \"c8cff6510d4d084fb1b4aa13b64b97ca12b07321\",\n \"analysis_key\": \".github/workflows/shiftleft.yml:build\",\n \"environment\": \"{}\",\n \"error\": \"\",\n \"category\": \".github/workflows/shiftleft.yml:build/\",\n \"created_at\": \"2020-08-31T22:46:44Z\",\n \"results_count\": 17,\n \"rules_count\": 32,\n \"id\": 200,\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/200\",\n \"sarif_id\": \"8981cd8e-b078-4ac3-a3be-1dad7dbd0b582\",\n \"tool\": {\n \"name\": \"Python Security Analysis\",\n \"guid\": null,\n \"version\": \"1.2.0\"\n },\n \"deletable\": true,\n \"warning\": \"\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -46998,17 +46998,17 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -47100,22 +47100,22 @@
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -47325,27 +47325,27 @@
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request if the sarif field is invalid"
+ "description": "Bad Request if the sarif field is invalid
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "413",
"httpStatusMessage": "Payload Too Large",
- "description": "Payload Too Large if the sarif field is too large"
+ "description": "Payload Too Large if the sarif field is too large
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -47426,17 +47426,17 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if the sarif id does not match any upload"
+ "description": "Not Found if the sarif id does not match any upload
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -47538,13 +47538,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"permissions\": {\n \"pull\": true,\n \"push\": true,\n \"admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -47613,20 +47613,20 @@
"category": "collaborators",
"categoryLabel": "Collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "For organization-owned repositories, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners.
\nTeam members will include the members of child teams.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if user is a collaborator"
+ "description": "Response if user is a collaborator
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if user is not a collaborator"
+ "description": "Not Found if user is not a collaborator
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "For organization-owned repositories, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners.
\nTeam members will include the members of child teams.
"
+ ]
},
{
"verb": "put",
@@ -47766,23 +47766,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when a new invitation is created",
+ "description": "Response when a new invitation is created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\"\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when person is already a collaborator"
+ "description": "Response when person is already a collaborator
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -47852,14 +47852,14 @@
"categoryLabel": "Collaborators",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -47932,13 +47932,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if user has admin permissions",
+ "description": "if user has admin permissions
",
"payload": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -48033,7 +48033,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -48119,13 +48119,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -48241,13 +48241,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Nice change\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -48320,19 +48320,19 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -48452,13 +48452,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -48598,24 +48598,24 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -48700,15 +48700,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a commit comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a commit comment.
"
+ ]
},
{
"verb": "get",
@@ -48844,28 +48844,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -48949,13 +48949,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"branch_5\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"protected\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -49061,7 +49061,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -49237,18 +49237,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -49352,7 +49352,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false\n }\n]\n
"
}
]
@@ -49450,23 +49450,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ],\n \"stats\": {\n \"additions\": 104,\n \"deletions\": 4,\n \"total\": 108\n },\n \"files\": [\n {\n \"filename\": \"file1.txt\",\n \"additions\": 10,\n \"deletions\": 2,\n \"changes\": 12,\n \"status\": \"modified\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"patch\": \"@@ -29,7 +29,7 @@\\n.....\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -49614,7 +49614,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_runs\": [\n {\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -49735,7 +49735,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_suites\": [\n {\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n }\n ]\n}\n
"
}
]
@@ -49835,13 +49835,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"state\": \"success\",\n \"statuses\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\"\n },\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"id\": 2,\n \"node_id\": \"MDY6U3RhdHVzMg==\",\n \"state\": \"success\",\n \"description\": \"Testing has completed successfully\",\n \"target_url\": \"https://ci.example.com/2000/output\",\n \"context\": \"security/brakeman\",\n \"created_at\": \"2012-08-20T01:19:13Z\",\n \"updated_at\": \"2012-08-20T01:19:13Z\"\n }\n ],\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"total_count\": 2,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e/status\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -49940,13 +49940,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
}
]
},
@@ -50022,18 +50022,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/compare/master...topic\",\n \"html_url\": \"https://github.com/octocat/Hello-World/compare/master...topic\",\n \"permalink_url\": \"https://github.com/octocat/Hello-World/compare/octocat:bbcd538c8e72b8c175046e27cc8f907076331401...octocat:0328041d1152db8ae77652d1618a02e57f745f17\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/compare/master...topic.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/compare/master...topic.patch\",\n \"base_commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n },\n \"merge_base_commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n },\n \"status\": \"behind\",\n \"ahead_by\": 1,\n \"behind_by\": 2,\n \"total_commits\": 1,\n \"commits\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n ],\n \"files\": [\n {\n \"sha\": \"bbcd538c8e72b8c175046e27cc8f907076331401\",\n \"filename\": \"file1.txt\",\n \"status\": \"added\",\n \"additions\": 103,\n \"deletions\": 21,\n \"changes\": 124,\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/file1.txt?ref=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"patch\": \"@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -50182,38 +50182,38 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 101,\n \"title\": \"[A-1234] Error found in core/models.py file'\",\n \"body\": \"You have used an email that already exists for the user_email_uniq field.\\n ## DETAILS:\\n\\nThe (email)=(Octocat@github.com) already exists.\\n\\n The error was found in core/models.py in get_or_create_user at line 62.\\n\\n self.save()\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -50326,17 +50326,17 @@
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Found"
+ "description": "Found
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -50646,29 +50646,29 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": {\n \"name\": \"hello.txt\",\n \"path\": \"notes/hello.txt\",\n \"sha\": \"a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"size\": 9,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\",\n \"git_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"download_url\": \"https://raw.githubusercontent.com/octocat/HelloWorld/master/notes/hello.txt\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"git\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"html\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\"\n }\n },\n \"commit\": {\n \"sha\": \"18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"node_id\": \"MDY6Q29tbWl0MThhNDNjZDhlMWUzYTc5Yzc4NmUzZDgwOGE3M2QyM2I2ZDIxMmIxNg==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/9a21f8e2018f42ffcf369b24d2cd20bc25c9e66f\",\n \"sha\": \"9a21f8e2018f42ffcf369b24d2cd20bc25c9e66f\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/da5a433788da5c255edad7979b328b67d79f53f6\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/da5a433788da5c255edad7979b328b67d79f53f6\",\n \"sha\": \"da5a433788da5c255edad7979b328b67d79f53f6\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": {\n \"name\": \"hello.txt\",\n \"path\": \"notes/hello.txt\",\n \"sha\": \"95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"size\": 9,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\",\n \"git_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"download_url\": \"https://raw.githubusercontent.com/octocat/HelloWorld/master/notes/hello.txt\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"git\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"html\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\"\n }\n },\n \"commit\": {\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -51100,28 +51100,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": null,\n \"commit\": {\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
],
"bodyParameters": [
@@ -51356,23 +51356,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if repository contains content",
+ "description": "if repository contains content
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"contributions\": 32\n }\n]\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if repository is empty"
+ "description": "Response if repository is empty
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -51510,7 +51510,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n }\n]\n
"
}
]
@@ -51717,30 +51717,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Deployments offer a few configurable parameters with certain defaults.
\nThe ref parameter can be any named branch, tag, or SHA. At GitHub Enterprise Server we often deploy branches and verify them\nbefore we merge a pull request.
\nThe environment parameter allows deployments to be issued to different runtime environments. Teams often have\nmultiple environments for verifying their applications, such as production, staging, and qa. This parameter\nmakes it easier to track which environments have requested deployments. The default environment is production.
\nThe auto_merge parameter is used to ensure that the requested ref is not behind the repository's default branch. If\nthe ref is behind the default branch for the repository, we will attempt to merge it for you. If the merge succeeds,\nthe API will return a successful merge commit. If merge conflicts prevent the merge from succeeding, the API will\nreturn a failure response.
\nBy default, commit statuses for every submitted context must be in a success\nstate. The required_contexts parameter allows you to specify a subset of contexts that must be success, or to\nspecify contexts that have not yet been submitted. You are not required to use commit statuses to deploy. If you do\nnot require any contexts or create any commit statuses, the deployment will always succeed.
\nThe payload parameter is available for any extra information that a deployment system might need. It is a JSON text\nfield that will be passed on when a deployment event is dispatched.
\nThe task parameter is used by the deployment system to allow different execution paths. In the web world this might\nbe deploy:migrations to run schema changes on the system. In the compiled world this could be a flag to compile an\napplication with debugging enabled.
\nUsers with repo or repo_deployment scopes can create a deployment for a given ref.
\nMerged branch response
\nYou will see this response when GitHub automatically merges the base branch into the topic branch instead of creating\na deployment. This auto-merge happens when:
\n\n- Auto-merge option is enabled in the repository
\n- Topic branch does not include the latest changes on the base branch, which is
master in the response example \n- There are no merge conflicts
\n
\nIf there are no new commits in the base branch, a new request to create a deployment should give a successful\nresponse.
\nMerge conflict response
\nThis error happens when the auto_merge option is enabled and when the default branch (in this case master), can't\nbe merged into the branch that's being deployed (in this case topic-branch), due to merge conflicts.
\nFailed commit status checks
\nThis error happens when the required_contexts parameter indicates that one or more contexts need to have a success\nstatus for the commit to be deployed, but one or more of the required contexts do not have a state of success.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Simple example",
- "payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
- },
- {
- "httpStatusCode": "202",
- "httpStatusMessage": "Accepted",
- "description": "Merged branch response",
- "payload": "{\n \"message\": \"Auto-merged master into topic-branch on deployment.\"\n}\n
"
- },
- {
- "httpStatusCode": "409",
- "httpStatusMessage": "Conflict",
- "description": "Conflict when there is a merge conflict or the commit's status checks failed"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -51841,6 +51817,30 @@
"rawDescription": "Specifies if the given environment is one that end-users directly interact with. Default: `true` when `environment` is `production` and `false` otherwise. \n**Note:** This parameter requires you to use the [`application/vnd.github.ant-man-preview+json`](https://docs.github.com/enterprise-server@3.1/rest/overview/api-previews#enhanced-deployments) custom media type.",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Simple example",
+ "payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
+ },
+ {
+ "httpStatusCode": "202",
+ "httpStatusMessage": "Accepted",
+ "description": "Merged branch response
",
+ "payload": "{\n \"message\": \"Auto-merged master into topic-branch on deployment.\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "409",
+ "httpStatusMessage": "Conflict",
+ "description": "Conflict when there is a merge conflict or the commit's status checks failed
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -51927,13 +51927,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -52003,25 +52003,25 @@
"category": "deployments",
"categoryLabel": "Deployments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "To ensure there can always be an active deployment, you can only delete an inactive deployment. Anyone with repo or repo_deployment scopes can delete an inactive deployment.
\nTo set a deployment as inactive, you must:
\n\n- Create a new deployment that is active so that the system has a record of the current state, then delete the previously active deployment.
\n- Mark the active deployment as inactive by adding any non-successful deployment status.
\n
\nFor more information, see \"Create a deployment\" and \"Create a deployment status.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "To ensure there can always be an active deployment, you can only delete an inactive deployment. Anyone with repo or repo_deployment scopes can delete an inactive deployment.
\nTo set a deployment as inactive, you must:
\n\n- Create a new deployment that is active so that the system has a record of the current state, then delete the previously active deployment.
\n- Mark the active deployment as inactive by adding any non-successful deployment status.
\n
\nFor more information, see \"Create a deployment\" and \"Create a deployment status.\"
"
+ ]
},
{
"verb": "get",
@@ -52129,13 +52129,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -52410,13 +52410,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -52515,13 +52515,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -52626,19 +52626,19 @@
"categoryLabel": "Repos",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "You can use this endpoint to trigger a webhook event called repository_dispatch when you want activity that happens outside of GitHub Enterprise Server to trigger a GitHub Actions workflow or GitHub App webhook. You must configure your GitHub Actions workflow or GitHub App to run when the repository_dispatch event occurs. For an example repository_dispatch webhook payload, see \"RepositoryDispatchEvent.\"
\nThe client_payload parameter is available for any extra information that your workflow might need. This parameter is a JSON payload that will be passed on when the webhook event is dispatched. For example, the client_payload can include a message that a user would like to send using a GitHub Actions workflow. Or the client_payload can be used as a test to debug your workflow.
\nThis endpoint requires write access to the repository by providing either:
\n\nThis input example shows how you can use the client_payload as a test to debug your workflow.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "You can use this endpoint to trigger a webhook event called repository_dispatch when you want activity that happens outside of GitHub Enterprise Server to trigger a GitHub Actions workflow or GitHub App webhook. You must configure your GitHub Actions workflow or GitHub App to run when the repository_dispatch event occurs. For an example repository_dispatch webhook payload, see \"RepositoryDispatchEvent.\"
\nThe client_payload parameter is available for any extra information that your workflow might need. This parameter is a JSON payload that will be passed on when the webhook event is dispatched. For example, the client_payload can include a message that a user would like to send using a GitHub Actions workflow. Or the client_payload can be used as a test to debug your workflow.
\nThis endpoint requires write access to the repository by providing either:
\n\nThis input example shows how you can use the client_payload as a test to debug your workflow.
",
"bodyParameters": [
{
"type": "string",
@@ -52743,14 +52743,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -52853,13 +52853,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
}
]
},
@@ -52960,28 +52960,28 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"push\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"organization\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"parent\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"source\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -53108,28 +53108,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/git/blobs/3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"sha\": \"3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -53206,23 +53206,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": \"Q29udGVudCBvZiB0aGUgYmxvYg==\",\n \"encoding\": \"base64\",\n \"url\": \"https://api.github.com/repos/octocat/example/git/blobs/3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"sha\": \"3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"size\": 19,\n \"node_id\": \"Q29udGVudCBvZiB0aGUgYmxvYg==\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -53512,18 +53512,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/827efc6d56897b048c772eb4087f854f46256132\",\n \"sha\": \"827efc6d56897b048c772eb4087f854f46256132\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7d1b31e74ee336d15cbd21741bc88a537ed063a0\",\n \"sha\": \"7d1b31e74ee336d15cbd21741bc88a537ed063a0\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7d1b31e74ee336d15cbd21741bc88a537ed063a0\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n },\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -53797,13 +53797,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"added readme, because im a good github citizen\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -53902,7 +53902,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/feature-a\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlLWE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/feature-a\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n },\n {\n \"ref\": \"refs/heads/feature-b\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlLWI=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/feature-b\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac\"\n }\n }\n]\n
"
}
]
@@ -53982,13 +53982,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -54132,13 +54132,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -54276,13 +54276,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -54356,19 +54356,19 @@
"subcategoryLabel": "Refs",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -54583,13 +54583,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"node_id\": \"MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw==\",\n \"tag\": \"v0.0.1\",\n \"sha\": \"940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"message\": \"initial version\",\n \"tagger\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\",\n \"date\": \"2014-11-07T22:01:45Z\"\n },\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\"\n },\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -54788,13 +54788,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"node_id\": \"MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw==\",\n \"tag\": \"v0.0.1\",\n \"sha\": \"940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"message\": \"initial version\",\n \"tagger\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\",\n \"date\": \"2014-11-07T22:01:45Z\"\n },\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\"\n },\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -55035,23 +55035,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"cd8274d15fa3ae2ab983129fb037999f264ba9a7\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/trees/cd8274d15fa3ae2ab983129fb037999f264ba9a7\",\n \"tree\": [\n {\n \"path\": \"file.rb\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"size\": 132,\n \"sha\": \"7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b\"\n }\n ],\n \"truncated\": true\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -55300,12 +55300,12 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -55393,13 +55393,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -55679,23 +55679,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -55959,13 +55959,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -56263,18 +56263,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -56551,19 +56551,19 @@
"subcategoryLabel": "Repos",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -56638,7 +56638,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -56779,14 +56779,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for a repository. To update more information about the webhook, including the active state and events, use \"Update a repository webhook.\"
\nAccess tokens must have the write:repo_hook or repo scope, and GitHub Apps must have the repository_hooks:write permission.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -56836,6 +56828,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -56905,20 +56905,20 @@
"subcategory": "repos",
"subcategoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the hook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the hook.
"
+ ]
},
{
"verb": "post",
@@ -56987,20 +56987,20 @@
"subcategory": "repos",
"subcategoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook is not subscribed to push events, the server will respond with 204 but no test POST will be generated.
\nNote: Previously /repos/:owner/:repo/hooks/:hook_id/test
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook is not subscribed to push events, the server will respond with 204 but no test POST will be generated.
\nNote: Previously /repos/:owner/:repo/hooks/:hook_id/test
"
+ ]
},
{
"verb": "get",
@@ -57064,18 +57064,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -57163,7 +57163,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
}
]
@@ -57288,7 +57288,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"expired\": false,\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\"\n}\n
"
}
]
@@ -57362,14 +57362,14 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -57572,23 +57572,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -57629,7 +57629,7 @@
}
],
"summary": "Create an issue",
- "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.1/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.1/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.1/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.1/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.1/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -57775,40 +57775,7 @@
"categoryLabel": "Issues",
"contentType": "application/json",
"notes": [],
- "descriptionHTML": "Any user with pull access to a repository can create an issue. If issues are disabled in the repository, the API returns a 410 Gone status.
\nThis endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "410",
- "httpStatusMessage": "Gone",
- "description": "Gone"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- },
- {
- "httpStatusCode": "503",
- "httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
- }
- ],
+ "descriptionHTML": "Any user with pull access to a repository can create an issue. If issues are disabled in the repository, the API returns a 410 Gone status.
\nThis endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
"bodyParameters": [
{
"oneOf": [
@@ -57909,6 +57876,39 @@
"rawDescription": "Logins for Users to assign to this issue. _NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise._",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "410",
+ "httpStatusMessage": "Gone",
+ "description": "Gone
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ },
+ {
+ "httpStatusCode": "503",
+ "httpStatusMessage": "Service Unavailable",
+ "description": "Service unavailable
"
+ }
]
},
{
@@ -58042,18 +58042,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -58143,13 +58143,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -58265,13 +58265,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -58344,14 +58344,14 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -58471,13 +58471,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -58617,19 +58617,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -58714,15 +58714,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE delete /repositories/:repository_id/issues/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to an issue comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE delete /repositories/:repository_id/issues/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to an issue comment.
"
+ ]
},
{
"verb": "get",
@@ -58815,13 +58815,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"issue\": {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -58905,23 +58905,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"issue\": {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"performed_via_github_app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -59003,28 +59003,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -59234,44 +59234,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Issue owners and users with push access can edit an issue.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
- },
- {
- "httpStatusCode": "301",
- "httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "410",
- "httpStatusMessage": "Gone",
- "description": "Gone"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- },
- {
- "httpStatusCode": "503",
- "httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
- }
- ],
"bodyParameters": [
{
"oneOf": [
@@ -59387,6 +59349,44 @@
"rawDescription": "Logins for Users to assign to this issue. Pass one or more user logins to _replace_ the set of assignees on this Issue. Send an empty array (`[]`) to clear all assignees from the Issue. _NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise._",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "301",
+ "httpStatusMessage": "Moved Permanently",
+ "description": "Moved permanently
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "410",
+ "httpStatusMessage": "Gone",
+ "description": "Gone
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ },
+ {
+ "httpStatusCode": "503",
+ "httpStatusMessage": "Service Unavailable",
+ "description": "Service unavailable
"
+ }
]
},
{
@@ -59507,7 +59507,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
}
]
@@ -59629,7 +59629,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
}
]
@@ -59746,18 +59746,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -59808,7 +59808,7 @@
}
],
"summary": "Create an issue comment",
- "description": "This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.1/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.1/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "This endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.1/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.1/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.1/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -59858,7 +59858,7 @@
"subcategoryLabel": "Comments",
"contentType": "application/json",
"notes": [],
- "descriptionHTML": "This endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
+ "descriptionHTML": "This endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
"bodyParameters": [
{
"type": "string",
@@ -59874,28 +59874,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -60000,13 +60000,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"performed_via_github_app\": null,\n \"label\": {\n \"name\": \"label\",\n \"color\": \"red\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -60104,13 +60104,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -60283,18 +60283,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -60467,18 +60467,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -60551,19 +60551,19 @@
"subcategoryLabel": "Labels",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -60648,18 +60648,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -60758,34 +60758,34 @@
"categoryLabel": "Issues",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Users with push access can lock an issue or pull request's conversation.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Users with push access can lock an issue or pull request's conversation.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -60870,25 +60870,25 @@
"category": "issues",
"categoryLabel": "Issues",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Users with push access can unlock an issue's conversation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Users with push access can unlock an issue's conversation.
"
+ ]
},
{
"verb": "get",
@@ -61008,18 +61008,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -61159,19 +61159,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -61256,15 +61256,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/issues/:issue_number/reactions/:reaction_id.
\nDelete a reaction to an issue.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/issues/:issue_number/reactions/:reaction_id.
\nDelete a reaction to an issue.
"
+ ]
},
{
"verb": "get",
@@ -61367,24 +61367,24 @@
"subcategoryLabel": "Timeline",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -61470,7 +61470,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n }\n]\n
"
}
]
@@ -61615,13 +61615,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -61699,13 +61699,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -61777,15 +61777,15 @@
"subcategory": "keys",
"subcategoryLabel": "Keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deploy keys are immutable. If you need to update a key, remove the key and create a new one instead.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deploy keys are immutable. If you need to update a key, remove the key and create a new one instead.
"
+ ]
},
{
"verb": "get",
@@ -61871,13 +61871,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -62021,18 +62021,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -62109,13 +62109,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -62265,7 +62265,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug%20:bug:\",\n \"name\": \"bug :bug:\",\n \"description\": \"Small bug fix required\",\n \"color\": \"b01f26\",\n \"default\": true\n}\n
"
}
]
@@ -62338,14 +62338,14 @@
"subcategoryLabel": "Labels",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -62409,7 +62409,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"C\": 78769,\n \"Python\": 7769\n}\n
"
}
]
@@ -62476,7 +62476,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"LICENSE\",\n \"path\": \"LICENSE\",\n \"sha\": \"401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"size\": 1077,\n \"url\": \"https://api.github.com/repos/benbalter/gman/contents/LICENSE?ref=master\",\n \"html_url\": \"https://github.com/benbalter/gman/blob/master/LICENSE\",\n \"git_url\": \"https://api.github.com/repos/benbalter/gman/git/blobs/401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"download_url\": \"https://raw.githubusercontent.com/benbalter/gman/master/LICENSE?lab=true\",\n \"type\": \"file\",\n \"content\": \"VGhlIE1JVCBMaWNlbnNlIChNSVQpCgpDb3B5cmlnaHQgKGMpIDIwMTMgQmVu\\nIEJhbHRlcgoKUGVybWlzc2lvbiBpcyBoZXJlYnkgZ3JhbnRlZCwgZnJlZSBv\\nZiBjaGFyZ2UsIHRvIGFueSBwZXJzb24gb2J0YWluaW5nIGEgY29weSBvZgp0\\naGlzIHNvZnR3YXJlIGFuZCBhc3NvY2lhdGVkIGRvY3VtZW50YXRpb24gZmls\\nZXMgKHRoZSAiU29mdHdhcmUiKSwgdG8gZGVhbCBpbgp0aGUgU29mdHdhcmUg\\nd2l0aG91dCByZXN0cmljdGlvbiwgaW5jbHVkaW5nIHdpdGhvdXQgbGltaXRh\\ndGlvbiB0aGUgcmlnaHRzIHRvCnVzZSwgY29weSwgbW9kaWZ5LCBtZXJnZSwg\\ncHVibGlzaCwgZGlzdHJpYnV0ZSwgc3VibGljZW5zZSwgYW5kL29yIHNlbGwg\\nY29waWVzIG9mCnRoZSBTb2Z0d2FyZSwgYW5kIHRvIHBlcm1pdCBwZXJzb25z\\nIHRvIHdob20gdGhlIFNvZnR3YXJlIGlzIGZ1cm5pc2hlZCB0byBkbyBzbywK\\nc3ViamVjdCB0byB0aGUgZm9sbG93aW5nIGNvbmRpdGlvbnM6CgpUaGUgYWJv\\ndmUgY29weXJpZ2h0IG5vdGljZSBhbmQgdGhpcyBwZXJtaXNzaW9uIG5vdGlj\\nZSBzaGFsbCBiZSBpbmNsdWRlZCBpbiBhbGwKY29waWVzIG9yIHN1YnN0YW50\\naWFsIHBvcnRpb25zIG9mIHRoZSBTb2Z0d2FyZS4KClRIRSBTT0ZUV0FSRSBJ\\nUyBQUk9WSURFRCAiQVMgSVMiLCBXSVRIT1VUIFdBUlJBTlRZIE9GIEFOWSBL\\nSU5ELCBFWFBSRVNTIE9SCklNUExJRUQsIElOQ0xVRElORyBCVVQgTk9UIExJ\\nTUlURUQgVE8gVEhFIFdBUlJBTlRJRVMgT0YgTUVSQ0hBTlRBQklMSVRZLCBG\\nSVRORVNTCkZPUiBBIFBBUlRJQ1VMQVIgUFVSUE9TRSBBTkQgTk9OSU5GUklO\\nR0VNRU5ULiBJTiBOTyBFVkVOVCBTSEFMTCBUSEUgQVVUSE9SUyBPUgpDT1BZ\\nUklHSFQgSE9MREVSUyBCRSBMSUFCTEUgRk9SIEFOWSBDTEFJTSwgREFNQUdF\\nUyBPUiBPVEhFUiBMSUFCSUxJVFksIFdIRVRIRVIKSU4gQU4gQUNUSU9OIE9G\\nIENPTlRSQUNULCBUT1JUIE9SIE9USEVSV0lTRSwgQVJJU0lORyBGUk9NLCBP\\nVVQgT0YgT1IgSU4KQ09OTkVDVElPTiBXSVRIIFRIRSBTT0ZUV0FSRSBPUiBU\\nSEUgVVNFIE9SIE9USEVSIERFQUxJTkdTIElOIFRIRSBTT0ZUV0FSRS4K\\n\",\n \"encoding\": \"base64\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/benbalter/gman/contents/LICENSE?ref=master\",\n \"git\": \"https://api.github.com/repos/benbalter/gman/git/blobs/401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"html\": \"https://github.com/benbalter/gman/blob/master/LICENSE\"\n },\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n}\n
"
}
]
@@ -62620,33 +62620,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Successful Response (The resulting merge commit)",
+ "description": "Successful Response (The resulting merge commit)
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ],\n \"stats\": {\n \"additions\": 104,\n \"deletions\": 4,\n \"total\": 108\n },\n \"files\": [\n {\n \"filename\": \"file1.txt\",\n \"additions\": 10,\n \"deletions\": 2,\n \"changes\": 12,\n \"status\": \"modified\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"patch\": \"@@ -29,7 +29,7 @@\\n.....\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when already merged"
+ "description": "Response when already merged
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found when the base or head does not exist"
+ "description": "Not Found when the base or head does not exist
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when there is a merge conflict"
+ "description": "Conflict when there is a merge conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -62780,13 +62780,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -62961,18 +62961,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -63050,13 +63050,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -63238,7 +63238,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
}
]
@@ -63312,19 +63312,19 @@
"subcategoryLabel": "Milestones",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -63420,7 +63420,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
}
]
@@ -63553,7 +63553,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n }\n]\n
"
}
]
@@ -63639,19 +63639,19 @@
"subcategoryLabel": "Notifications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Marks all notifications in a repository as \"read\" removes them from the default view on GitHub Enterprise Server. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub Enterprise Server will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List repository notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
}
],
- "descriptionHTML": "Marks all notifications in a repository as \"read\" removes them from the default view on GitHub Enterprise Server. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub Enterprise Server will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List repository notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"bodyParameters": [
{
"type": "string",
@@ -63727,13 +63727,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages\",\n \"status\": \"built\",\n \"cname\": \"developer.github.com\",\n \"custom_404\": false,\n \"html_url\": \"https://developer.github.com\",\n \"source\": {\n \"branch\": \"master\",\n \"path\": \"/\"\n },\n \"public\": true,\n \"https_certificate\": {\n \"state\": \"approved\",\n \"description\": \"Certificate is approved\",\n \"domains\": [\n \"developer.github.com\"\n ],\n \"expires_at\": \"2021-05-22\"\n },\n \"https_enforced\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -63897,18 +63897,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages\",\n \"status\": \"built\",\n \"cname\": \"developer.github.com\",\n \"custom_404\": false,\n \"html_url\": \"https://developer.github.com\",\n \"source\": {\n \"branch\": \"master\",\n \"path\": \"/\"\n },\n \"public\": true,\n \"https_certificate\": {\n \"state\": \"approved\",\n \"description\": \"Certificate is approved\",\n \"domains\": [\n \"developer.github.com\"\n ],\n \"expires_at\": \"2021-05-22\"\n },\n \"https_enforced\": true\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -64148,24 +64148,24 @@
"categoryLabel": "Pages",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Updates information for a GitHub Enterprise Server Pages site. For more information, see \"About GitHub Pages.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Updates information for a GitHub Enterprise Server Pages site. For more information, see \"About GitHub Pages.
",
"bodyParameters": [
{
"type": "string or nullable",
@@ -64301,24 +64301,24 @@
"categoryLabel": "Pages",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -64402,7 +64402,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n }\n]\n
"
}
]
@@ -64469,7 +64469,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/latest\",\n \"status\": \"queued\"\n}\n
"
}
]
@@ -64536,7 +64536,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n}\n
"
}
]
@@ -64612,7 +64612,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n}\n
"
}
]
@@ -64738,7 +64738,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\"\n }\n]\n
"
}
]
@@ -64824,7 +64824,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\"\n}\n
"
}
]
@@ -64954,7 +64954,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"enabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/repos/octocat/hello-world/pre-receive-hooks/42\"\n}\n
"
}
]
@@ -65040,7 +65040,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Responds with effective values inherited from owner and/or global level.",
+ "description": "Responds with effective values inherited from owner and/or global level.
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\"\n}\n
"
}
]
@@ -65149,33 +65149,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -65304,33 +65304,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -65483,18 +65483,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -65711,18 +65711,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -65861,7 +65861,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n }\n]\n
"
}
]
@@ -65952,13 +65952,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -66081,7 +66081,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
}
]
@@ -66154,20 +66154,20 @@
"subcategory": "comments",
"subcategoryLabel": "Comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a review comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a review comment.
"
+ ]
},
{
"verb": "get",
@@ -66287,13 +66287,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -66433,19 +66433,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -66530,15 +66530,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/pulls/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a pull request review comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/pulls/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a pull request review comment.
"
+ ]
},
{
"verb": "get",
@@ -66611,23 +66611,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Pass the appropriate [media type](https://docs.github.com/enterprise-server@3.1/rest/overview/media-types/#commits-commit-comparison-and-pull-requests) to fetch diff and patch formats.",
+ "description": "Pass the appropriate media type to fetch diff and patch formats.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -66820,18 +66820,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -66980,7 +66980,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n }\n]\n
"
}
]
@@ -67289,18 +67289,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -67426,13 +67426,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 426899381,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -67527,7 +67527,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n]\n
"
}
]
@@ -67623,18 +67623,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"sha\": \"bbcd538c8e72b8c175046e27cc8f907076331401\",\n \"filename\": \"file1.txt\",\n \"status\": \"added\",\n \"additions\": 103,\n \"deletions\": 21,\n \"changes\": 124,\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/file1.txt?ref=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"patch\": \"@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -67704,19 +67704,19 @@
"categoryLabel": "Pulls",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if pull request has been merged"
+ "description": "Response if pull request has been merged
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if pull request has not been merged"
+ "description": "Not Found if pull request has not been merged
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -67887,35 +67887,35 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if merge was successful",
+ "description": "if merge was successful
",
"payload": "{\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "405",
"httpStatusMessage": "Method Not Allowed",
- "description": "Method Not Allowed if merge cannot be performed",
+ "description": "Method Not Allowed if merge cannot be performed
",
"payload": "{\n \"message\": \"Pull Request is not mergeable\"\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict if sha was provided and pull request head did not match",
+ "description": "Conflict if sha was provided and pull request head did not match
",
"payload": "{\n \"message\": \"Head branch was modified. Review and try the merge again.\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -68012,7 +68012,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n}\n
"
}
]
@@ -68175,18 +68175,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"draft\": false\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if user is not a collaborator"
+ "description": "Unprocessable Entity if user is not a collaborator
"
}
]
},
@@ -68312,12 +68312,12 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -68440,7 +68440,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The list of reviews returns in chronological order.",
+ "description": "The list of reviews returns in chronological order.
",
"payload": "[\n {\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -68727,18 +68727,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -69011,13 +69011,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -69142,13 +69142,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change. And add more about this.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69235,18 +69235,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69353,13 +69353,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -69499,18 +69499,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"DISMISSED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69660,23 +69660,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69793,18 +69793,18 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"message\": \"Updating pull request branch.\",\n \"url\": \"https://github.com/repos/octocat/Hello-World/pulls/53\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69882,18 +69882,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"file\",\n \"encoding\": \"base64\",\n \"size\": 5362,\n \"name\": \"README.md\",\n \"path\": \"README.md\",\n \"content\": \"encoded content ...\",\n \"sha\": \"3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"git_url\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"html_url\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\",\n \"download_url\": \"https://raw.githubusercontent.com/octokit/octokit.rb/master/README.md\",\n \"_links\": {\n \"git\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"self\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"html\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69982,18 +69982,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"file\",\n \"encoding\": \"base64\",\n \"size\": 5362,\n \"name\": \"README.md\",\n \"path\": \"README.md\",\n \"content\": \"encoded content ...\",\n \"sha\": \"3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"git_url\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"html_url\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\",\n \"download_url\": \"https://raw.githubusercontent.com/octokit/octokit.rb/master/README.md\",\n \"_links\": {\n \"git\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"self\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"html\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -70079,13 +70079,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -70289,13 +70289,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -70373,23 +70373,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "To download the asset's binary content, set the `Accept` header of the request to [`application/octet-stream`](https://docs.github.com/enterprise-server@3.1/rest/overview/media-types). The API will either redirect the client to the location, or stream it directly if possible. API clients should handle both a `200` or `302` response.",
+ "description": "To download the asset's binary content, set the Accept header of the request to application/octet-stream. The API will either redirect the client to the location, or stream it directly if possible. API clients should handle both a 200 or 302 response.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Found"
+ "description": "Found
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -70539,7 +70539,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -70613,14 +70613,14 @@
"subcategoryLabel": "Assets",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -70684,7 +70684,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
}
]
@@ -70762,13 +70762,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -70844,13 +70844,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "**Note:** This returns an `upload_url` key corresponding to the endpoint for uploading release assets. This key is a [hypermedia resource](https://docs.github.com/enterprise-server@3.1/rest/overview/resources-in-the-rest-api#hypermedia).",
+ "description": "Note: This returns an upload_url key corresponding to the endpoint for uploading release assets. This key is a hypermedia resource.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -71056,7 +71056,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
}
]
@@ -71127,15 +71127,15 @@
"category": "releases",
"categoryLabel": "Releases",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Users with push access to the repository can delete a release.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Users with push access to the repository can delete a release.
"
+ ]
},
{
"verb": "get",
@@ -71231,7 +71231,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
}
]
@@ -71350,13 +71350,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response for successful upload",
+ "description": "Response for successful upload
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Response if you upload an asset with the same filename as another uploaded asset"
+ "description": "Response if you upload an asset with the same filename as another uploaded asset
"
}
]
},
@@ -71476,18 +71476,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"number\": 2,\n \"created_at\": \"2020-11-06T18:48:51Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/2\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2/locations\",\n \"state\": \"resolved\",\n \"resolution\": \"false_positive\",\n \"resolved_at\": \"2020-11-07T02:47:13Z\",\n \"resolved_by\": {\n \"login\": \"monalisa\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjI=\",\n \"avatar_url\": \"https://alambic.github.com/avatars/u/2?\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/monalisa\",\n \"followers_url\": \"https://api.github.com/users/monalisa/followers\",\n \"following_url\": \"https://api.github.com/users/monalisa/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/monalisa/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/monalisa/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/monalisa/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/monalisa/orgs\",\n \"repos_url\": \"https://api.github.com/users/monalisa/repos\",\n \"events_url\": \"https://api.github.com/users/monalisa/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/monalisa/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"secret_type\": \"adafruit_io_key\",\n \"secret\": \"aio_XXXXXXXXXXXXXXXXXXXXXXXXXXXX\"\n },\n {\n \"number\": 1,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/repo/secret-scanning/alerts/1\",\n \"html_url\": \"https://github.com/owner/repo/security/secret-scanning/1\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/1/locations\",\n \"state\": \"open\",\n \"resolution\": null,\n \"resolved_at\": null,\n \"resolved_by\": null,\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public or secret scanning is disabled for the repository"
+ "description": "Repository is public or secret scanning is disabled for the repository
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -71565,23 +71565,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/42\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42/locations\",\n \"state\": \"open\",\n \"resolution\": null,\n \"resolved_at\": null,\n \"resolved_by\": null,\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found"
+ "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -71739,23 +71739,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/42\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42/locations\",\n \"state\": \"resolved\",\n \"resolution\": \"used_in_tests\",\n \"resolved_at\": \"2020-11-16T22:42:07Z\",\n \"resolved_by\": {\n \"login\": \"monalisa\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjI=\",\n \"avatar_url\": \"https://alambic.github.com/avatars/u/2?\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/monalisa\",\n \"followers_url\": \"https://api.github.com/users/monalisa/followers\",\n \"following_url\": \"https://api.github.com/users/monalisa/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/monalisa/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/monalisa/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/monalisa/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/monalisa/orgs\",\n \"repos_url\": \"https://api.github.com/users/monalisa/repos\",\n \"events_url\": \"https://api.github.com/users/monalisa/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/monalisa/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found"
+ "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "State does not match the resolution"
+ "description": "State does not match the resolution
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -71855,7 +71855,7 @@
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -71923,18 +71923,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Returns a weekly aggregate of the number of additions and deletions pushed to a repository.",
+ "description": "Returns a weekly aggregate of the number of additions and deletions pushed to a repository.
",
"payload": "[\n [\n 1302998400,\n 1124,\n -435\n ]\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -72002,18 +72002,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"days\": [\n 0,\n 3,\n 26,\n 20,\n 39,\n 1,\n 0\n ],\n \"total\": 89,\n \"week\": 1336280400\n }\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -72081,18 +72081,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "* `w` - Start of the week, given as a [Unix timestamp](http://en.wikipedia.org/wiki/Unix_time).\n* `a` - Number of additions\n* `d` - Number of deletions\n* `c` - Number of commits",
+ "description": "\nw - Start of the week, given as a Unix timestamp. \na - Number of additions \nd - Number of deletions \nc - Number of commits \n
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"total\": 135,\n \"weeks\": [\n {\n \"w\": 1367712000,\n \"a\": 6898,\n \"d\": 77,\n \"c\": 10\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -72160,13 +72160,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The array order is oldest week (index 0) to most recent week.",
+ "description": "The array order is oldest week (index 0) to most recent week.
",
"payload": "{\n \"all\": [\n 11,\n 21,\n 15,\n 2,\n 8,\n 1,\n 8,\n 23,\n 17,\n 21,\n 11,\n 10,\n 33,\n 91,\n 38,\n 34,\n 22,\n 23,\n 32,\n 3,\n 43,\n 87,\n 71,\n 18,\n 13,\n 5,\n 13,\n 16,\n 66,\n 27,\n 12,\n 45,\n 110,\n 117,\n 13,\n 8,\n 18,\n 9,\n 19,\n 26,\n 39,\n 12,\n 20,\n 31,\n 46,\n 91,\n 45,\n 10,\n 24,\n 9,\n 29,\n 7\n ],\n \"owner\": [\n 3,\n 2,\n 3,\n 0,\n 2,\n 0,\n 5,\n 14,\n 7,\n 9,\n 1,\n 5,\n 0,\n 48,\n 19,\n 2,\n 0,\n 1,\n 10,\n 2,\n 23,\n 40,\n 35,\n 8,\n 8,\n 2,\n 10,\n 6,\n 30,\n 0,\n 2,\n 9,\n 53,\n 104,\n 3,\n 3,\n 10,\n 4,\n 7,\n 11,\n 21,\n 4,\n 4,\n 22,\n 26,\n 63,\n 11,\n 2,\n 14,\n 1,\n 10,\n 3\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -72234,13 +72234,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "For example, `[2, 14, 25]` indicates that there were 25 total commits, during the 2:00pm hour on Tuesdays. All times are based on the time zone of individual commits.",
+ "description": "For example, [2, 14, 25] indicates that there were 25 total commits, during the 2:00pm hour on Tuesdays. All times are based on the time zone of individual commits.
",
"payload": "[\n [\n 0,\n 0,\n 5\n ],\n [\n 0,\n 1,\n 43\n ],\n [\n 0,\n 2,\n 21\n ]\n]\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -72427,7 +72427,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -72516,7 +72516,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -72585,18 +72585,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if you subscribe to the repository",
+ "description": "if you subscribe to the repository
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/repos/octocat/example/subscription\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if you don't subscribe to the repository"
+ "description": "Not Found if you don't subscribe to the repository
"
}
]
},
@@ -72714,7 +72714,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/repos/octocat/example/subscription\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\"\n}\n
"
}
]
@@ -72777,15 +72777,15 @@
"subcategory": "watching",
"subcategoryLabel": "Watching",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This endpoint should only be used to stop watching a repository. To control whether or not you wish to receive notifications from a repository, set the repository's subscription manually.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This endpoint should only be used to stop watching a repository. To control whether or not you wish to receive notifications from a repository, set the repository's subscription manually.
"
+ ]
},
{
"verb": "get",
@@ -72869,7 +72869,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"v0.1\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"zipball_url\": \"https://github.com/octocat/Hello-World/zipball/v0.1\",\n \"tarball_url\": \"https://github.com/octocat/Hello-World/tarball/v0.1\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
}
]
@@ -72941,15 +72941,15 @@
"subcategory": "contents",
"subcategoryLabel": "Contents",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a tar archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a tar archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
"
+ ]
},
{
"verb": "get",
@@ -73033,7 +73033,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
}
]
@@ -73126,18 +73126,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"names\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -73258,23 +73258,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"names\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -73406,7 +73406,7 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n}\n
"
}
]
@@ -73478,15 +73478,15 @@
"subcategory": "contents",
"subcategoryLabel": "Contents",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a zip archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a zip archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
"
+ ]
},
{
"verb": "post",
@@ -73674,7 +73674,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"template_repository\": {}\n}\n
"
}
]
@@ -73749,18 +73749,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -73866,28 +73866,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 7,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"name\": \"classes.js\",\n \"path\": \"src/attributes/classes.js\",\n \"sha\": \"d7212f9dee2dcc18f084d7df8f417b80846ded5a\",\n \"url\": \"https://api.github.com/repositories/167174/contents/src/attributes/classes.js?ref=825ac3773694e0cd23ee74895fd5aeb535b27da4\",\n \"git_url\": \"https://api.github.com/repositories/167174/git/blobs/d7212f9dee2dcc18f084d7df8f417b80846ded5a\",\n \"html_url\": \"https://github.com/jquery/jquery/blob/825ac3773694e0cd23ee74895fd5aeb535b27da4/src/attributes/classes.js\",\n \"repository\": {\n \"id\": 167174,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxNjcxNzQ=\",\n \"name\": \"jquery\",\n \"full_name\": \"jquery/jquery\",\n \"owner\": {\n \"login\": \"jquery\",\n \"id\": 70142,\n \"node_id\": \"MDQ6VXNlcjcwMTQy\",\n \"avatar_url\": \"https://0.gravatar.com/avatar/6906f317a4733f4379b06c32229ef02f?d=https%3A%2F%2Fidenticons.github.com%2Ff426f04f2f9813718fb806b30e0093de.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/jquery\",\n \"html_url\": \"https://github.com/jquery\",\n \"followers_url\": \"https://api.github.com/users/jquery/followers\",\n \"following_url\": \"https://api.github.com/users/jquery/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/jquery/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/jquery/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/jquery/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/jquery/orgs\",\n \"repos_url\": \"https://api.github.com/users/jquery/repos\",\n \"events_url\": \"https://api.github.com/users/jquery/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/jquery/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/jquery/jquery\",\n \"description\": \"jQuery JavaScript Library\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/jquery/jquery\",\n \"forks_url\": \"https://api.github.com/repos/jquery/jquery/forks\",\n \"keys_url\": \"https://api.github.com/repos/jquery/jquery/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/jquery/jquery/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/jquery/jquery/teams\",\n \"hooks_url\": \"https://api.github.com/repos/jquery/jquery/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/jquery/jquery/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/jquery/jquery/events\",\n \"assignees_url\": \"https://api.github.com/repos/jquery/jquery/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/jquery/jquery/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/jquery/jquery/tags\",\n \"blobs_url\": \"https://api.github.com/repos/jquery/jquery/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/jquery/jquery/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/jquery/jquery/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/jquery/jquery/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/jquery/jquery/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/jquery/jquery/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/jquery/jquery/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/jquery/jquery/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/jquery/jquery/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/jquery/jquery/subscription\",\n \"commits_url\": \"https://api.github.com/repos/jquery/jquery/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/jquery/jquery/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/jquery/jquery/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/jquery/jquery/issues/comments/{number}\",\n \"contents_url\": \"https://api.github.com/repos/jquery/jquery/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/jquery/jquery/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/jquery/jquery/merges\",\n \"archive_url\": \"https://api.github.com/repos/jquery/jquery/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/jquery/jquery/downloads\",\n \"issues_url\": \"https://api.github.com/repos/jquery/jquery/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/jquery/jquery/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/jquery/jquery/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/jquery/jquery/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/jquery/jquery/labels{/name}\",\n \"deployments_url\": \"http://api.github.com/repos/octocat/Hello-World/deployments\",\n \"releases_url\": \"http://api.github.com/repos/octocat/Hello-World/releases{/id}\"\n },\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -74000,13 +74000,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"sha\": \"bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"html_url\": \"https://github.com/octocat/Spoon-Knife/commit/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"author\": {\n \"date\": \"2014-02-04T14:38:36-08:00\",\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"date\": \"2014-02-12T15:18:55-08:00\",\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"message\": \"Create styles.css and updated README\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/trees/a639e96f9038797fba6e0469f94a4b0cc459fa68\",\n \"sha\": \"a639e96f9038797fba6e0469f94a4b0cc459fa68\"\n },\n \"comment_count\": 8\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 583231,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/583231?v=3\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {},\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/a30c19e3f13765a3b48829788bc1cb8b4e95cee4\",\n \"html_url\": \"https://github.com/octocat/Spoon-Knife/commit/a30c19e3f13765a3b48829788bc1cb8b4e95cee4\",\n \"sha\": \"a30c19e3f13765a3b48829788bc1cb8b4e95cee4\"\n }\n ],\n \"repository\": {\n \"id\": 1300192,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMzAwMTky\",\n \"name\": \"Spoon-Knife\",\n \"full_name\": \"octocat/Spoon-Knife\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 583231,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/583231?v=3\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Spoon-Knife\",\n \"description\": \"This repo is for demonstration purposes only.\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/forks\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/events\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/merges\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/deployments\"\n },\n \"score\": 1,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -74122,28 +74122,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 280,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132\",\n \"repository_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit\",\n \"labels_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/comments\",\n \"events_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/events\",\n \"html_url\": \"https://github.com/batterseapower/pinyin-toolkit/issues/132\",\n \"id\": 35802,\n \"node_id\": \"MDU6SXNzdWUzNTgwMg==\",\n \"number\": 132,\n \"title\": \"Line Number Indexes Beyond 20 Not Displayed\",\n \"user\": {\n \"login\": \"Nick3C\",\n \"id\": 90254,\n \"node_id\": \"MDQ6VXNlcjkwMjU0\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/934442aadfe3b2f4630510de416c5718?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Nick3C\",\n \"html_url\": \"https://github.com/Nick3C\",\n \"followers_url\": \"https://api.github.com/users/Nick3C/followers\",\n \"following_url\": \"https://api.github.com/users/Nick3C/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Nick3C/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Nick3C/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Nick3C/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Nick3C/orgs\",\n \"repos_url\": \"https://api.github.com/users/Nick3C/repos\",\n \"events_url\": \"https://api.github.com/users/Nick3C/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Nick3C/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"labels\": [\n {\n \"id\": 4,\n \"node_id\": \"MDU6TGFiZWw0\",\n \"url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/labels/bug\",\n \"name\": \"bug\",\n \"color\": \"ff0000\"\n }\n ],\n \"state\": \"open\",\n \"assignee\": null,\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"comments\": 15,\n \"created_at\": \"2009-07-12T20:10:41Z\",\n \"updated_at\": \"2009-07-19T09:23:43Z\",\n \"closed_at\": null,\n \"pull_request\": {\n \"url\": \"https://api/github.com/repos/octocat/Hello-World/pull/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"body\": \"...\",\n \"score\": 1,\n \"locked\": true,\n \"author_association\": \"COLLABORATOR\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -74260,28 +74260,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"id\": 418327088,\n \"node_id\": \"MDU6TGFiZWw0MTgzMjcwODg=\",\n \"url\": \"https://api.github.com/repos/octocat/linguist/labels/enhancement\",\n \"name\": \"enhancement\",\n \"color\": \"84b6eb\",\n \"default\": true,\n \"description\": \"New feature or request.\",\n \"score\": 1\n },\n {\n \"id\": 418327086,\n \"node_id\": \"MDU6TGFiZWw0MTgzMjcwODY=\",\n \"url\": \"https://api.github.com/repos/octocat/linguist/labels/bug\",\n \"name\": \"bug\",\n \"color\": \"ee0701\",\n \"default\": true,\n \"description\": \"Something isn't working.\",\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -74396,23 +74396,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 40,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"id\": 3081286,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkzMDgxMjg2\",\n \"name\": \"Tetris\",\n \"full_name\": \"dtrupenn/Tetris\",\n \"owner\": {\n \"login\": \"dtrupenn\",\n \"id\": 872147,\n \"node_id\": \"MDQ6VXNlcjg3MjE0Nw==\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/e7956084e75f239de85d3a31bc172ace?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/dtrupenn\",\n \"received_events_url\": \"https://api.github.com/users/dtrupenn/received_events\",\n \"type\": \"User\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"site_admin\": true\n },\n \"private\": false,\n \"html_url\": \"https://github.com/dtrupenn/Tetris\",\n \"description\": \"A C implementation of Tetris using Pennsim through LC4\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/dtrupenn/Tetris\",\n \"created_at\": \"2012-01-01T00:31:50Z\",\n \"updated_at\": \"2013-01-05T17:58:47Z\",\n \"pushed_at\": \"2012-01-01T00:37:02Z\",\n \"homepage\": \"https://github.com\",\n \"size\": 524,\n \"stargazers_count\": 1,\n \"watchers_count\": 1,\n \"language\": \"Assembly\",\n \"forks_count\": 0,\n \"open_issues_count\": 0,\n \"master_branch\": \"master\",\n \"default_branch\": \"master\",\n \"score\": 1,\n \"archive_url\": \"https://api.github.com/repos/dtrupenn/Tetris/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/dtrupenn/Tetris/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/dtrupenn/Tetris/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/dtrupenn/Tetris/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/dtrupenn/Tetris/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/dtrupenn/Tetris/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/dtrupenn/Tetris/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/dtrupenn/Tetris/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/dtrupenn/Tetris/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/dtrupenn/Tetris/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/dtrupenn/Tetris/downloads\",\n \"events_url\": \"https://api.github.com/repos/dtrupenn/Tetris/events\",\n \"forks_url\": \"https://api.github.com/repos/dtrupenn/Tetris/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/tags{/sha}\",\n \"git_url\": \"git:github.com/dtrupenn/Tetris.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/dtrupenn/Tetris/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/dtrupenn/Tetris/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/dtrupenn/Tetris/languages\",\n \"merges_url\": \"https://api.github.com/repos/dtrupenn/Tetris/merges\",\n \"milestones_url\": \"https://api.github.com/repos/dtrupenn/Tetris/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/dtrupenn/Tetris/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/dtrupenn/Tetris/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/dtrupenn/Tetris/releases{/id}\",\n \"ssh_url\": \"git@github.com:dtrupenn/Tetris.git\",\n \"stargazers_url\": \"https://api.github.com/repos/dtrupenn/Tetris/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/dtrupenn/Tetris/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/dtrupenn/Tetris/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/dtrupenn/Tetris/subscription\",\n \"tags_url\": \"https://api.github.com/repos/dtrupenn/Tetris/tags\",\n \"teams_url\": \"https://api.github.com/repos/dtrupenn/Tetris/teams\",\n \"trees_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/dtrupenn/Tetris.git\",\n \"mirror_url\": \"git:git.example.com/dtrupenn/Tetris\",\n \"hooks_url\": \"https://api.github.com/repos/dtrupenn/Tetris/hooks\",\n \"svn_url\": \"https://svn.github.com/dtrupenn/Tetris\",\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1,\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_pages\": true,\n \"has_wiki\": true,\n \"has_downloads\": true,\n \"archived\": true,\n \"disabled\": true,\n \"visibility\": \"private\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -74496,18 +74496,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 6,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"name\": \"ruby\",\n \"display_name\": \"Ruby\",\n \"short_description\": \"Ruby is a scripting language designed for simplified object-oriented programming.\",\n \"description\": \"Ruby was developed by Yukihiro \\\"Matz\\\" Matsumoto in 1995 with the intent of having an easily readable programming language. It is integrated with the Rails framework to create dynamic web-applications. Ruby's syntax is similar to that of Perl and Python.\",\n \"created_by\": \"Yukihiro Matsumoto\",\n \"released\": \"December 21, 1995\",\n \"created_at\": \"2016-11-28T22:03:59Z\",\n \"updated_at\": \"2017-10-30T18:16:32Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"rails\",\n \"display_name\": \"Rails\",\n \"short_description\": \"Ruby on Rails (Rails) is a web application framework written in Ruby.\",\n \"description\": \"Ruby on Rails (Rails) is a web application framework written in Ruby. It is meant to help simplify the building of complex websites.\",\n \"created_by\": \"David Heinemeier Hansson\",\n \"released\": \"December 13 2005\",\n \"created_at\": \"2016-12-09T17:03:50Z\",\n \"updated_at\": \"2017-10-30T16:20:19Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"python\",\n \"display_name\": \"Python\",\n \"short_description\": \"Python is a dynamically typed programming language.\",\n \"description\": \"Python is a dynamically typed programming language designed by Guido Van Rossum. Much like the programming language Ruby, Python was designed to be easily read by programmers. Because of its large following and many libraries, Python can be implemented and used to do anything from webpages to scientific research.\",\n \"created_by\": \"Guido van Rossum\",\n \"released\": \"February 20, 1991\",\n \"created_at\": \"2016-12-07T00:07:02Z\",\n \"updated_at\": \"2017-10-27T22:45:43Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"jekyll\",\n \"display_name\": \"Jekyll\",\n \"short_description\": \"Jekyll is a simple, blog-aware static site generator.\",\n \"description\": \"Jekyll is a blog-aware, site generator written in Ruby. It takes raw text files, runs it through a renderer and produces a publishable static website.\",\n \"created_by\": \"Tom Preston-Werner\",\n \"released\": \"2008\",\n \"created_at\": \"2016-12-16T21:53:08Z\",\n \"updated_at\": \"2017-10-27T19:00:24Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"sass\",\n \"display_name\": \"Sass\",\n \"short_description\": \"Sass is a stable extension to classic CSS.\",\n \"description\": \"Sass is a stylesheet language with a main implementation in Ruby. It is an extension of CSS that makes improvements to the old stylesheet format, such as being able to declare variables and using a cleaner nesting syntax.\",\n \"created_by\": \"Hampton Catlin, Natalie Weizenbaum, Chris Eppstein\",\n \"released\": \"November 28, 2006\",\n \"created_at\": \"2016-12-16T21:53:45Z\",\n \"updated_at\": \"2018-01-16T16:30:40Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"homebrew\",\n \"display_name\": \"Homebrew\",\n \"short_description\": \"Homebrew is a package manager for macOS.\",\n \"description\": \"Homebrew is a package manager for Apple's macOS operating system. It simplifies the installation of software and is popular in the Ruby on Rails community.\",\n \"created_by\": \"Max Howell\",\n \"released\": \"2009\",\n \"created_at\": \"2016-12-17T20:30:44Z\",\n \"updated_at\": \"2018-02-06T16:14:56Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -74615,23 +74615,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 12,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"login\": \"mojombo\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/mojombo\",\n \"html_url\": \"https://github.com/mojombo\",\n \"followers_url\": \"https://api.github.com/users/mojombo/followers\",\n \"subscriptions_url\": \"https://api.github.com/users/mojombo/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/mojombo/orgs\",\n \"repos_url\": \"https://api.github.com/users/mojombo/repos\",\n \"received_events_url\": \"https://api.github.com/users/mojombo/received_events\",\n \"type\": \"User\",\n \"score\": 1,\n \"following_url\": \"https://api.github.com/users/mojombo/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/mojombo/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/mojombo/starred{/owner}{/repo}\",\n \"events_url\": \"https://api.github.com/users/mojombo/events{/privacy}\",\n \"site_admin\": true\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -74680,7 +74680,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"running\",\n \"progress\": [\n {\n \"status\": \"DONE\",\n \"key\": \"Appliance core components\"\n },\n {\n \"status\": \"DONE\",\n \"key\": \"GitHub utilities\"\n },\n {\n \"status\": \"DONE\",\n \"key\": \"GitHub applications\"\n },\n {\n \"status\": \"CONFIGURING\",\n \"key\": \"GitHub services\"\n },\n {\n \"status\": \"PENDING\",\n \"key\": \"Reloading appliance services\"\n }\n ]\n}\n
"
}
]
@@ -74724,15 +74724,15 @@
"subcategory": "management-console",
"subcategoryLabel": "Management console",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This endpoint allows you to start a configuration process at any time for your updated settings to take effect:
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This endpoint allows you to start a configuration process at any time for your updated settings to take effect:
"
+ ]
},
{
"verb": "get",
@@ -74779,7 +74779,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"scheduled\",\n \"scheduled_time\": \"Tuesday, January 22 at 15:34 -0800\",\n \"connection_services\": [\n {\n \"name\": \"git operations\",\n \"number\": 0\n },\n {\n \"name\": \"mysql queries\",\n \"number\": 233\n },\n {\n \"name\": \"resque jobs\",\n \"number\": 54\n }\n ]\n}\n
"
}
]
@@ -74867,7 +74867,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"scheduled\",\n \"scheduled_time\": \"Tuesday, January 22 at 15:34 -0800\",\n \"connection_services\": [\n {\n \"name\": \"git operations\",\n \"number\": 0\n },\n {\n \"name\": \"mysql queries\",\n \"number\": 233\n },\n {\n \"name\": \"resque jobs\",\n \"number\": 54\n }\n ]\n}\n
"
}
]
@@ -74917,7 +74917,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enterprise\": {\n \"private_mode\": false,\n \"public_pages\": false,\n \"subdomain_isolation\": true,\n \"signup_enabled\": false,\n \"github_hostname\": \"ghe.local\",\n \"identicons_host\": \"dotcom\",\n \"http_proxy\": null,\n \"auth_mode\": \"default\",\n \"expire_sessions\": false,\n \"admin_password\": null,\n \"configuration_id\": 1401777404,\n \"configuration_run_count\": 4,\n \"avatar\": {\n \"enabled\": false,\n \"uri\": \"\"\n },\n \"customer\": {\n \"name\": \"GitHub\",\n \"email\": \"stannis@themannis.biz\",\n \"uuid\": \"af6cac80-e4e1-012e-d822-1231380e52e9\",\n \"secret_key_data\": \"-----BEGIN PGP PRIVATE KEY BLOCK-----\\nVersion: GnuPG v1.4.10 (GNU/Linux)\\n\\nlQcYBE5TCgsBEACk4yHpUcapplebaumBMXYMiLF+nCQ0lxpx...\\n-----END PGP PRIVATE KEY BLOCK-----\\n\",\n \"public_key_data\": \"-----BEGIN PGP PUBLIC KEY BLOCK-----\\nVersion: GnuPG v1.4.10 (GNU/Linux)\\n\\nmI0ETqzZYgEEALSe6snowdenXyqvLfSQ34HWD6C7....\\n-----END PGP PUBLIC KEY BLOCK-----\\n\"\n },\n \"license\": {\n \"seats\": 0,\n \"evaluation\": false,\n \"perpetual\": false,\n \"unlimited_seating\": true,\n \"support_key\": \"ssh-rsa AAAAB3N....\",\n \"ssh_allowed\": true,\n \"cluster_support\": false,\n \"expire_at\": \"2016-04-27T00:00:00-07:00\"\n },\n \"github_ssl\": {\n \"enabled\": false,\n \"cert\": null,\n \"key\": null\n },\n \"ldap\": {\n \"host\": null,\n \"port\": 0,\n \"base\": [],\n \"uid\": null,\n \"bind_dn\": null,\n \"password\": null,\n \"method\": \"Plain\",\n \"search_strategy\": \"detect\",\n \"user_groups\": [],\n \"admin_group\": null,\n \"virtual_attribute_enabled\": false,\n \"recursive_group_search\": false,\n \"posix_support\": true,\n \"user_sync_emails\": false,\n \"user_sync_keys\": false,\n \"user_sync_interval\": 4,\n \"team_sync_interval\": 4,\n \"sync_enabled\": false,\n \"reconciliation\": {\n \"user\": null,\n \"org\": null\n },\n \"profile\": {\n \"uid\": \"uid\",\n \"name\": null,\n \"mail\": null,\n \"key\": null\n }\n },\n \"cas\": {\n \"url\": null\n },\n \"saml\": {\n \"sso_url\": null,\n \"certificate\": null,\n \"certificate_path\": null,\n \"issuer\": null,\n \"idp_initiated_sso\": false,\n \"disable_admin_demote\": false\n },\n \"github_oauth\": {\n \"client_id\": \"12313412\",\n \"client_secret\": \"kj123131132\",\n \"organization_name\": \"Homestar Runners\",\n \"organization_team\": \"homestarrunners/characters\"\n },\n \"smtp\": {\n \"enabled\": true,\n \"address\": \"smtp.example.com\",\n \"authentication\": \"plain\",\n \"port\": \"1234\",\n \"domain\": \"blah\",\n \"username\": \"foo\",\n \"user_name\": \"mr_foo\",\n \"enable_starttls_auto\": true,\n \"password\": \"bar\",\n \"discard-to-noreply-address\": true,\n \"support_address\": \"enterprise@github.com\",\n \"support_address_type\": \"email\",\n \"noreply_address\": \"noreply@github.com\"\n },\n \"ntp\": {\n \"primary_server\": \"0.pool.ntp.org\",\n \"secondary_server\": \"1.pool.ntp.org\"\n },\n \"timezone\": null,\n \"snmp\": {\n \"enabled\": false,\n \"community\": \"\"\n },\n \"syslog\": {\n \"enabled\": false,\n \"server\": null,\n \"protocol_name\": \"udp\"\n },\n \"assets\": null,\n \"pages\": {\n \"enabled\": true\n },\n \"collectd\": {\n \"enabled\": false,\n \"server\": null,\n \"port\": 0,\n \"encryption\": null,\n \"username\": null,\n \"password\": null\n },\n \"mapping\": {\n \"enabled\": true,\n \"tileserver\": null,\n \"basemap\": \"company.map-qsz2zrvs\",\n \"token\": null\n },\n \"load_balancer\": null\n },\n \"run_list\": [\n \"recipe[enterprise-configure]\"\n ]\n}\n
"
}
]
@@ -74989,14 +74989,14 @@
"subcategoryLabel": "Management console",
"contentType": "application/x-www-form-urlencoded",
"notes": [],
+ "descriptionHTML": "For a list of the available settings, see the Get settings endpoint.
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "For a list of the available settings, see the Get settings endpoint.
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"bodyParameters": [
{
"type": "string",
@@ -75054,7 +75054,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n }\n]\n
"
}
]
@@ -75142,7 +75142,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n }\n]\n
"
}
]
@@ -75230,7 +75230,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n }\n]\n
"
}
]
@@ -75317,14 +75317,14 @@
"subcategoryLabel": "Management console",
"contentType": "application/x-www-form-urlencoded",
"notes": [],
+ "descriptionHTML": "When you boot a GitHub instance for the first time, you can use the following endpoint to upload a license.
\nNote that you need to POST to /setup/api/configure to start the actual configuration process.
\nWhen using this endpoint, your GitHub instance must have a password set. This can be accomplished two ways:
\n\n- If you're working directly with the API before accessing the web interface, you must pass in the password parameter to set your password.
\n- If you set up your instance via the web interface before accessing the API, your calls to this endpoint do not need the password parameter.
\n
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "When you boot a GitHub instance for the first time, you can use the following endpoint to upload a license.
\nNote that you need to POST to /setup/api/configure to start the actual configuration process.
\nWhen using this endpoint, your GitHub instance must have a password set. This can be accomplished two ways:
\n\n- If you're working directly with the API before accessing the web interface, you must pass in the password parameter to set your password.
\n- If you set up your instance via the web interface before accessing the API, your calls to this endpoint do not need the password parameter.
\n
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"bodyParameters": [
{
"type": "string",
@@ -75415,14 +75415,14 @@
"subcategoryLabel": "Management console",
"contentType": "application/x-www-form-urlencoded",
"notes": [],
+ "descriptionHTML": "This API upgrades your license and also triggers the configuration process.
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "This API upgrades your license and also triggers the configuration process.
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"bodyParameters": [
{
"type": "string",
@@ -75491,13 +75491,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -75691,29 +75691,29 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -75767,25 +75767,25 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a team endpoint.
\nTo delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a team endpoint.
\nTo delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
"
+ ]
},
{
"verb": "get",
@@ -75887,7 +75887,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -76036,7 +76036,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -76115,7 +76115,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -76247,7 +76247,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 1,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Welcome to our first team post\",\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -76313,15 +76313,15 @@
"subcategory": "discussions",
"subcategoryLabel": "Discussions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion endpoint.
\nDelete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion endpoint.
\nDelete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -76432,7 +76432,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -76550,7 +76550,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -76638,7 +76638,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -76764,7 +76764,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like pineapples?\",\n \"body_html\": \"<p>Do you like pineapples?</p>\",\n \"body_version\": \"e6907b24d9c93cc0c5024a7af5888116\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -76839,15 +76839,15 @@
"subcategory": "discussion-comments",
"subcategoryLabel": "Discussion comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion comment endpoint.
\nDeletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion comment endpoint.
\nDeletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -76969,7 +76969,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -77112,7 +77112,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -77228,7 +77228,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -77362,7 +77362,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -77461,13 +77461,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -77532,20 +77532,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Get team member\" endpoint (described below) is deprecated.
\nWe recommend using the Get team membership for a user endpoint instead. It allows you to get both active and pending memberships.
\nTo list members in a team, the team must be visible to the authenticated user.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if user is a member"
+ "description": "if user is a member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if user is not a member"
+ "description": "if user is not a member
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Get team member\" endpoint (described below) is deprecated.
\nWe recommend using the Get team membership for a user endpoint instead. It allows you to get both active and pending memberships.
\nTo list members in a team, the team must be visible to the authenticated user.
"
+ ]
},
{
"verb": "put",
@@ -77608,30 +77608,30 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Add team member\" endpoint (described below) is deprecated.
\nWe recommend using the Add or update team membership for a user endpoint instead. It allows you to invite new organization members to your teams.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo add someone to a team, the authenticated user must be an organization owner or a team maintainer in the team they're changing. The person being added to the team must be a member of the team's organization.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team synchronization is set up"
+ "description": "Not Found if team synchronization is set up
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team or you attempt to add a user to a team when they are not a member of at least one other team in the same organization"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team or you attempt to add a user to a team when they are not a member of at least one other team in the same organization
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Add team member\" endpoint (described below) is deprecated.
\nWe recommend using the Add or update team membership for a user endpoint instead. It allows you to invite new organization members to your teams.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo add someone to a team, the authenticated user must be an organization owner or a team maintainer in the team they're changing. The person being added to the team must be a member of the team's organization.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -77694,20 +77694,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Remove team member\" endpoint (described below) is deprecated.
\nWe recommend using the Remove team membership for a user endpoint instead. It allows you to remove both active and pending memberships.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a team member, the authenticated user must have 'admin' permissions to the team or be an owner of the org that the team is associated with. Removing a team member does not delete the user, it just removes them from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team synchronization is setup"
+ "description": "Not Found if team synchronization is setup
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Remove team member\" endpoint (described below) is deprecated.
\nWe recommend using the Remove team membership for a user endpoint instead. It allows you to remove both active and pending memberships.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a team member, the authenticated user must have 'admin' permissions to the team or be an owner of the org that the team is associated with. Removing a team member does not delete the user, it just removes them from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
"
+ ]
},
{
"verb": "get",
@@ -77782,7 +77782,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -77901,17 +77901,17 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team
"
}
]
},
@@ -77976,20 +77976,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove team membership for a user endpoint.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "if team synchronization is set up"
+ "description": "if team synchronization is set up
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove team membership for a user endpoint.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
"
+ ]
},
{
"verb": "get",
@@ -78073,13 +78073,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -78154,13 +78154,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if project is not managed by this team"
+ "description": "Not Found if project is not managed by this team
"
}
]
},
@@ -78277,23 +78277,23 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if the project is not owned by the organization",
+ "description": "Forbidden if the project is not owned by the organization
",
"payload": "{\n \"message\": \"Must have admin rights to Repository.\",\n \"documentation_url\": \"https://docs.github.com/enterprise-server@3.1/rest/reference/teams#add-or-update-team-project-permissions\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -78356,30 +78356,30 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a project from a team endpoint.
\nRemoves an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. Note: This endpoint removes the project from the team, but does not delete it.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a project from a team endpoint.
\nRemoves an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. Note: This endpoint removes the project from the team, but does not delete it.
"
+ ]
},
{
"verb": "get",
@@ -78457,13 +78457,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -78541,18 +78541,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Alternative response with extra repository information",
+ "description": "Alternative response with extra repository information
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"maintain\": false,\n \"push\": false,\n \"triage\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"triage\": false,\n \"push\": false,\n \"maintain\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if repository is managed by this team"
+ "description": "Response if repository is managed by this team
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if repository is not managed by this team"
+ "description": "Not Found if repository is not managed by this team
"
}
]
},
@@ -78651,24 +78651,24 @@
"categoryLabel": "Teams",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new \"Add or update team repository permissions\" endpoint.
\nTo add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new \"Add or update team repository permissions\" endpoint.
\nTo add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -78754,15 +78754,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a repository from a team endpoint.
\nIf the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. NOTE: This does not delete the repository, it just removes it from the team.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a repository from a team endpoint.
\nIf the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. NOTE: This does not delete the repository, it just removes it from the team.
"
+ ]
},
{
"verb": "get",
@@ -78840,23 +78840,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if child teams exist",
+ "description": "if child teams exist
",
"payload": "[\n {\n \"id\": 2,\n \"node_id\": \"MDQ6VGVhbTI=\",\n \"url\": \"https://api.github.com/teams/2\",\n \"name\": \"Original Roster\",\n \"slug\": \"original-roster\",\n \"description\": \"Started it all.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/2/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/2/repos\",\n \"parent\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n },\n \"html_url\": \"https://github.com/orgs/rails/teams/core\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -78915,17 +78915,17 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -79144,33 +79144,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"name\": \"monalisa octocat\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"hireable\": false,\n \"bio\": \"There once was...\",\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2008-01-14T04:33:35Z\",\n \"private_gists\": 81,\n \"total_private_repos\": 100,\n \"owned_private_repos\": 100,\n \"disk_usage\": 10000,\n \"collaborators\": 8,\n \"two_factor_authentication\": true,\n \"plan\": {\n \"name\": \"Medium\",\n \"space\": 400,\n \"private_repos\": 20,\n \"collaborators\": 0\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -79240,28 +79240,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"email\": \"octocat@github.com\",\n \"verified\": true,\n \"primary\": true,\n \"visibility\": \"public\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -79378,33 +79378,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"email\": \"octocat@octocat.org\",\n \"primary\": false,\n \"verified\": false,\n \"visibility\": \"public\"\n },\n {\n \"email\": \"octocat@github.com\",\n \"primary\": false,\n \"verified\": false,\n \"visibility\": null\n },\n {\n \"email\": \"mona@github.com\",\n \"primary\": false,\n \"verified\": false,\n \"visibility\": null\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -79498,39 +79498,39 @@
"subcategoryLabel": "Emails",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "This endpoint is accessible with the user scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "This endpoint is accessible with the user scope.
",
"bodyParameters": [
{
"description": "Required. Email addresses associated with the GitHub user account.
",
@@ -79614,23 +79614,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -79700,23 +79700,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -79770,34 +79770,34 @@
"subcategoryLabel": "Followers",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if the person is followed by the authenticated user"
+ "description": "if the person is followed by the authenticated user
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if the person is not followed by the authenticated user"
+ "description": "if the person is not followed by the authenticated user
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -79848,35 +79848,35 @@
"subcategory": "followers",
"subcategoryLabel": "Followers",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nFollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nFollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
"
+ ]
},
{
"verb": "delete",
@@ -79927,35 +79927,35 @@
"subcategory": "followers",
"subcategoryLabel": "Followers",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Unfollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Unfollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
"
+ ]
},
{
"verb": "get",
@@ -80023,28 +80023,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"string\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -80128,33 +80128,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"\\\"-----BEGIN PGP PUBLIC KEY BLOCK-----\\\\nVersion: GnuPG v2\\\\n\\\\nmQENBFayYZ0BCAC4hScoJXXpyR+MXGcrBxElqw3FzCVvkViuyeko+Jp76QJhg8kr\\\\nucRTxbnOoHfda/FmilEa/wxf9ch5/PSrrL26FxEoPHhJolp8fnIDLQeITn94NYdB\\\\nZtnnEKslpPrG97qSUWIchvyqCPtvOb8+8fWvGx9K/ZWcEEdh1X8+WFR2jMENMeoX\\\\nwxHWQoPnS7LpX/85/M7VUcJxvDVfv+eHsnQupmE5bGarKNih0oMe3LbdN3qA5PTz\\\\nSCm6Iudar1VsQ+xTz08ymL7t4pnEtLguQ7EyatFHCjxNblv5RzxoL0tDgN3HqoDz\\\\nc7TEA+q4RtDQl9amcvQ95emnXmZ974u7UkYdABEBAAG0HlNvbWUgVXNlciA8c29t\\\\nZXVzZXJAZ21haWwuY29tPokBOAQTAQIAIgUCVrJhnQIbAwYLCQgHAwIGFQgCCQoL\\\\nBBYCAwECHgECF4AACgkQMmLv8lug0nAViQgArWjI55+7p48URr2z9Jvak+yrBTx1\\\\nzkufltQAnHTJkq+Kl9dySSmTnOop8o3rE4++IOpYV5Y36PkKf9EZMk4n1RQiDPKE\\\\nAFtRVTkRaoWzOir9KQXJPfhKrl01j/QzY+utfiMvUoBJZ9ybq8Pa885SljW9lbaX\\\\nIYw+hl8ZdJ2KStvGrEyfQvRyq3aN5c9TV//4BdGnwx7Qabq/U+G18lizG6f/yq15\\\\ned7t0KELaCfeKPvytp4VE9/z/Ksah/h3+Qilx07/oG2Ae5kC1bEC9coD/ogPUhbv\\\\nb2bsBIoY9E9YwsLoif2lU+o1t76zLgUktuNscRRUKobW028H1zuFS/XQhrkBDQRW\\\\nsmGdAQgApnyyv3i144OLYy0O4UKQxd3e10Y3WpDwfnGIBefAI1m7RxnUxBag/DsU\\\\n7gi9qLEC4VHSfq4eiNfr1LJOyCL2edTgCWFgBhVjbXjZe6YAOrAnhxwCErnN0Y7N\\\\n6s8wVh9fObSOyf8ZE6G7JeKpcq9Q6gd/KxagfD48a1v+fyRHpyQc6J9pUEmtrDJ7\\\\nBjmsd2VWzLBvNWdHyxDNtZweIaqIO9VUYYpr1mtTliNBOZLUelmgrt7HBRcJpWMA\\\\nS8muVVbuP5MK0trLBq/JB8qUH3zRzB/PhMgzmkIfjEK1VYDWm4E8DYyTWEJcHqkb\\\\neqFsNjrIlwPaA122BWC6gUOPwwH+oQARAQABiQEfBBgBAgAJBQJWsmGdAhsMAAoJ\\\\nEDJi7/JboNJwAyAIALd4xcdmGbZD98gScJzqwzkOMcO8zFHqHNvJ42xIFvGny7c0\\\\n1Rx7iyrdypOby5AxE+viQcjG4rpLZW/xKYBNGrCfDyQO7511I0v8x20EICMlMfD/\\\\nNrWQCzesEPcUlKTP07d+sFyP8AyseOidbzY/92CpskTgdSBjY/ntLSaoknl/fjJE\\\\nQM8OkPqU7IraO1Jzzdnm20d5PZL9+PIwIWdSTedU/vBMTJyNcoqvSfKf1wNC66XP\\\\nhqfYgXJE564AdWZKA3C0IyCqiv+LHwxLnUHio1a4/r91C8KPzxs6tGxRDjXLd7ms\\\\nuYFGWymiUGOE/giHlcxdYcHzwLnPDliMQOLiTkK5AQ0EVuxMygEIAOD+bW1cDTmE\\\\nBxh5JECoqeHuwgl6DlLhnubWPkQ4ZeRzBRAsFcEJQlwlJjrzFDicL+lnm6Qq4tt0\\\\n560TwHdf15/AKTZIZu7H25axvGNzgeaUkJEJdYAq9zTKWwX7wKyzBszi485nQg97\\\\nMfAqwhMpDW0Qqf8+7Ug+WEmfBSGv9uL3aQC6WEeIsHfri0n0n8v4XgwhfShXguxO\\\\nCsOztEsuW7WWKW9P4TngKKv4lCHdPlV6FwxeMzODBJvc2fkHVHnqc0PqszJ5xcF8\\\\n6gZCpMM027SbpeYWCAD5zwJyYP9ntfO1p2HjnQ1dZaP9FeNcO7uIV1Lnd1eGCu6I\\\\nsrVp5k1f3isAEQEAAYkCPgQYAQIACQUCVuxMygIbAgEpCRAyYu/yW6DScMBdIAQZ\\\\nAQIABgUCVuxMygAKCRCKohN4dhq2b4tcCACHxmOHVXNpu47OvUGYQydLgMACUlXN\\\\nlj+HfE0VReqShxdDmpasAY9IRpuMB2RsGK8GbNP+4SlOlAiPf5SMhS7nZNkNDgQQ\\\\naZ3HFpgrFmFwmE10BKT4iQtoxELLM57z0qGOAfTsEjWFQa4sF+6IHAQR/ptkdkkI\\\\nBUEXiMnAwVwBysLIJiLO8qdjB6qp52QkT074JVrwywT/P+DkMfC2k4r/AfEbf6eF\\\\ndmPDuPk6KD87+hJZsSa5MaMUBQVvRO/mgEkhJRITVu58eWGaBOcQJ8gqurhCqM5P\\\\nDfUA4TJ7wiqM6sS764vV1rOioTTXkszzhClQqET7hPVnVQjenYgv0EZHNyQH/1f1\\\\n/CYqvV1vFjM9vJjMbxXsATCkZe6wvBVKD8vLsJAr8N+onKQz+4OPc3kmKq7aESu3\\\\nCi/iuie5KKVwnuNhr9AzT61vEkKxwHcVFEvHB77F6ZAAInhRvjzmQbD2dlPLLQCC\\\\nqDj71ODSSAPTEmUy6969bgD9PfWei7kNkBIx7s3eBv8yzytSc2EcuUgopqFazquw\\\\nFs1+tqGHjBvQfTo6bqbJjp/9Ci2pvde3ElV2rAgUlb3lqXyXjRDqrXosh5GcRPQj\\\\nK8Nhj1BNhnrCVskE4BP0LYbOHuzgm86uXwGCFsY+w2VOsSm16Jx5GHyG5S5WU3+D\\\\nIts/HFYRLiFgDLmTlxo=\\\\n=+OzK\\\\n-----END PGP PUBLIC KEY BLOCK-----\\\"\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -80214,28 +80214,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"\\\"-----BEGIN PGP PUBLIC KEY BLOCK-----\\\\nVersion: GnuPG v2\\\\n\\\\nmQENBFayYZ0BCAC4hScoJXXpyR+MXGcrBxElqw3FzCVvkViuyeko+Jp76QJhg8kr\\\\nucRTxbnOoHfda/FmilEa/wxf9ch5/PSrrL26FxEoPHhJolp8fnIDLQeITn94NYdB\\\\nZtnnEKslpPrG97qSUWIchvyqCPtvOb8+8fWvGx9K/ZWcEEdh1X8+WFR2jMENMeoX\\\\nwxHWQoPnS7LpX/85/M7VUcJxvDVfv+eHsnQupmE5bGarKNih0oMe3LbdN3qA5PTz\\\\nSCm6Iudar1VsQ+xTz08ymL7t4pnEtLguQ7EyatFHCjxNblv5RzxoL0tDgN3HqoDz\\\\nc7TEA+q4RtDQl9amcvQ95emnXmZ974u7UkYdABEBAAG0HlNvbWUgVXNlciA8c29t\\\\nZXVzZXJAZ21haWwuY29tPokBOAQTAQIAIgUCVrJhnQIbAwYLCQgHAwIGFQgCCQoL\\\\nBBYCAwECHgECF4AACgkQMmLv8lug0nAViQgArWjI55+7p48URr2z9Jvak+yrBTx1\\\\nzkufltQAnHTJkq+Kl9dySSmTnOop8o3rE4++IOpYV5Y36PkKf9EZMk4n1RQiDPKE\\\\nAFtRVTkRaoWzOir9KQXJPfhKrl01j/QzY+utfiMvUoBJZ9ybq8Pa885SljW9lbaX\\\\nIYw+hl8ZdJ2KStvGrEyfQvRyq3aN5c9TV//4BdGnwx7Qabq/U+G18lizG6f/yq15\\\\ned7t0KELaCfeKPvytp4VE9/z/Ksah/h3+Qilx07/oG2Ae5kC1bEC9coD/ogPUhbv\\\\nb2bsBIoY9E9YwsLoif2lU+o1t76zLgUktuNscRRUKobW028H1zuFS/XQhrkBDQRW\\\\nsmGdAQgApnyyv3i144OLYy0O4UKQxd3e10Y3WpDwfnGIBefAI1m7RxnUxBag/DsU\\\\n7gi9qLEC4VHSfq4eiNfr1LJOyCL2edTgCWFgBhVjbXjZe6YAOrAnhxwCErnN0Y7N\\\\n6s8wVh9fObSOyf8ZE6G7JeKpcq9Q6gd/KxagfD48a1v+fyRHpyQc6J9pUEmtrDJ7\\\\nBjmsd2VWzLBvNWdHyxDNtZweIaqIO9VUYYpr1mtTliNBOZLUelmgrt7HBRcJpWMA\\\\nS8muVVbuP5MK0trLBq/JB8qUH3zRzB/PhMgzmkIfjEK1VYDWm4E8DYyTWEJcHqkb\\\\neqFsNjrIlwPaA122BWC6gUOPwwH+oQARAQABiQEfBBgBAgAJBQJWsmGdAhsMAAoJ\\\\nEDJi7/JboNJwAyAIALd4xcdmGbZD98gScJzqwzkOMcO8zFHqHNvJ42xIFvGny7c0\\\\n1Rx7iyrdypOby5AxE+viQcjG4rpLZW/xKYBNGrCfDyQO7511I0v8x20EICMlMfD/\\\\nNrWQCzesEPcUlKTP07d+sFyP8AyseOidbzY/92CpskTgdSBjY/ntLSaoknl/fjJE\\\\nQM8OkPqU7IraO1Jzzdnm20d5PZL9+PIwIWdSTedU/vBMTJyNcoqvSfKf1wNC66XP\\\\nhqfYgXJE564AdWZKA3C0IyCqiv+LHwxLnUHio1a4/r91C8KPzxs6tGxRDjXLd7ms\\\\nuYFGWymiUGOE/giHlcxdYcHzwLnPDliMQOLiTkK5AQ0EVuxMygEIAOD+bW1cDTmE\\\\nBxh5JECoqeHuwgl6DlLhnubWPkQ4ZeRzBRAsFcEJQlwlJjrzFDicL+lnm6Qq4tt0\\\\n560TwHdf15/AKTZIZu7H25axvGNzgeaUkJEJdYAq9zTKWwX7wKyzBszi485nQg97\\\\nMfAqwhMpDW0Qqf8+7Ug+WEmfBSGv9uL3aQC6WEeIsHfri0n0n8v4XgwhfShXguxO\\\\nCsOztEsuW7WWKW9P4TngKKv4lCHdPlV6FwxeMzODBJvc2fkHVHnqc0PqszJ5xcF8\\\\n6gZCpMM027SbpeYWCAD5zwJyYP9ntfO1p2HjnQ1dZaP9FeNcO7uIV1Lnd1eGCu6I\\\\nsrVp5k1f3isAEQEAAYkCPgQYAQIACQUCVuxMygIbAgEpCRAyYu/yW6DScMBdIAQZ\\\\nAQIABgUCVuxMygAKCRCKohN4dhq2b4tcCACHxmOHVXNpu47OvUGYQydLgMACUlXN\\\\nlj+HfE0VReqShxdDmpasAY9IRpuMB2RsGK8GbNP+4SlOlAiPf5SMhS7nZNkNDgQQ\\\\naZ3HFpgrFmFwmE10BKT4iQtoxELLM57z0qGOAfTsEjWFQa4sF+6IHAQR/ptkdkkI\\\\nBUEXiMnAwVwBysLIJiLO8qdjB6qp52QkT074JVrwywT/P+DkMfC2k4r/AfEbf6eF\\\\ndmPDuPk6KD87+hJZsSa5MaMUBQVvRO/mgEkhJRITVu58eWGaBOcQJ8gqurhCqM5P\\\\nDfUA4TJ7wiqM6sS764vV1rOioTTXkszzhClQqET7hPVnVQjenYgv0EZHNyQH/1f1\\\\n/CYqvV1vFjM9vJjMbxXsATCkZe6wvBVKD8vLsJAr8N+onKQz+4OPc3kmKq7aESu3\\\\nCi/iuie5KKVwnuNhr9AzT61vEkKxwHcVFEvHB77F6ZAAInhRvjzmQbD2dlPLLQCC\\\\nqDj71ODSSAPTEmUy6969bgD9PfWei7kNkBIx7s3eBv8yzytSc2EcuUgopqFazquw\\\\nFs1+tqGHjBvQfTo6bqbJjp/9Ci2pvde3ElV2rAgUlb3lqXyXjRDqrXosh5GcRPQj\\\\nK8Nhj1BNhnrCVskE4BP0LYbOHuzgm86uXwGCFsY+w2VOsSm16Jx5GHyG5S5WU3+D\\\\nIts/HFYRLiFgDLmTlxo=\\\\n=+OzK\\\\n-----END PGP PUBLIC KEY BLOCK-----\\\"\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -80289,40 +80289,40 @@
"subcategory": "gpg-keys",
"subcategoryLabel": "Gpg keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a GPG key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:gpg_key scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a GPG key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:gpg_key scope.
"
+ ]
},
{
"verb": "get",
@@ -80390,28 +80390,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "You can find the permissions for the installation under the `permissions` key.",
+ "description": "You can find the permissions for the installation under the permissions key.
",
"payload": "{\n \"total_count\": 2,\n \"installations\": [\n {\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"all\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n },\n {\n \"id\": 3,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"all\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -80498,23 +80498,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The access the user has to each repository is included in the hash under the `permissions` key.",
+ "description": "The access the user has to each repository is included in the hash under the permissions key.
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -80577,30 +80577,30 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Add a single repository to an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Add a single repository to an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -80661,30 +80661,30 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Remove a single repository from an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Remove a single repository from an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -80848,18 +80848,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -80929,28 +80929,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n },\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234\",\n \"id\": 3,\n \"url\": \"https://api.github.com/user/keys/3\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAB\",\n \"created_at\": \"2020-07-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -81056,33 +81056,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -81142,28 +81142,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -81217,35 +81217,35 @@
"subcategory": "keys",
"subcategoryLabel": "Keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a public SSH key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:public_key scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a public SSH key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:public_key scope.
"
+ ]
},
{
"verb": "get",
@@ -81327,28 +81327,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/orgs/octocat/memberships/defunkt\",\n \"state\": \"active\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/octocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"url\": \"https://api.github.com/orgs/invitocat/memberships/defunkt\",\n \"state\": \"pending\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/invitocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -81407,18 +81407,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/orgs/invitocat/memberships/defunkt\",\n \"state\": \"pending\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/invitocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -81521,23 +81521,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/orgs/octocat/memberships/defunkt\",\n \"state\": \"active\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/octocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -81605,23 +81605,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -81733,33 +81733,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/users/octocat\",\n \"url\": \"https://api.github.com/projects/1002603\",\n \"html_url\": \"https://github.com/users/octocat/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002603/columns\",\n \"id\": 1002603,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDM=\",\n \"name\": \"My Projects\",\n \"body\": \"A board to manage my personal projects.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -81829,28 +81829,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"email\": \"octocat@github.com\",\n \"verified\": true,\n \"primary\": true,\n \"visibility\": \"public\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -82022,22 +82022,22 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -82464,38 +82464,38 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -82565,28 +82565,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -82641,34 +82641,34 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -82721,34 +82721,34 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -82852,17 +82852,17 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -82925,34 +82925,34 @@
"subcategoryLabel": "Starring",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if this repository is starred by you"
+ "description": "Response if this repository is starred by you
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if this repository is not starred by you"
+ "description": "Not Found if this repository is not starred by you
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -83012,35 +83012,35 @@
"subcategory": "starring",
"subcategoryLabel": "Starring",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -83101,34 +83101,34 @@
"subcategoryLabel": "Starring",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -83196,23 +83196,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -83280,23 +83280,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -83364,13 +83364,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -83439,7 +83439,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -83512,15 +83512,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "If you are authenticated as the given user, you will see your private events. Otherwise, you'll only see public events.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "If you are authenticated as the given user, you will see your private events. Otherwise, you'll only see public events.
"
+ ]
},
{
"verb": "get",
@@ -83600,15 +83600,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This is the user's organization dashboard. You must be authenticated as the user to view this.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This is the user's organization dashboard. You must be authenticated as the user to view this.
"
+ ]
},
{
"verb": "get",
@@ -83680,14 +83680,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -83764,7 +83764,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -83844,7 +83844,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -83908,19 +83908,19 @@
"subcategoryLabel": "Followers",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if the user follows the target user"
+ "description": "if the user follows the target user
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if the user does not follow the target user"
+ "description": "if the user does not follow the target user
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -84006,13 +84006,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -84091,7 +84091,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"string\"\n }\n]\n
"
}
]
@@ -84175,18 +84175,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"contexts\": [\n {\n \"message\": \"Owns this repository\",\n \"octicon\": \"repo\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -84243,7 +84243,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
}
]
@@ -84323,7 +84323,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\"\n }\n]\n
"
}
]
@@ -84401,7 +84401,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
}
]
@@ -84501,13 +84501,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/users/octocat\",\n \"url\": \"https://api.github.com/projects/1002603\",\n \"html_url\": \"https://github.com/users/octocat/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002603/columns\",\n \"id\": 1002603,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDM=\",\n \"name\": \"My Projects\",\n \"body\": \"A board to manage my personal projects.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -84580,15 +84580,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "These are events that you've received by watching repos and following users. If you are authenticated as the given user, you will see private events. Otherwise, you'll only see public events.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "These are events that you've received by watching repos and following users. If you are authenticated as the given user, you will see private events. Otherwise, you'll only see public events.
"
+ ]
},
{
"verb": "get",
@@ -84660,14 +84660,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -84795,7 +84795,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -84849,15 +84849,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -84908,15 +84908,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "You can demote any user account except your own.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "You can demote any user account except your own.
"
+ ]
},
{
"verb": "get",
@@ -85103,7 +85103,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -85179,14 +85179,14 @@
"subcategoryLabel": "Users",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, Active Directory LDAP-authenticated users cannot be suspended through this API. If you attempt to suspend an Active Directory LDAP-authenticated user through this API, it will return a 403 response.
\nYou can suspend any user account except your own.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, Active Directory LDAP-authenticated users cannot be suspended through this API. If you attempt to suspend an Active Directory LDAP-authenticated user through this API, it will return a 403 response.
\nYou can suspend any user account except your own.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -85270,14 +85270,14 @@
"subcategoryLabel": "Users",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, this API is disabled and will return a 403 response. Active Directory LDAP-authenticated users cannot be unsuspended using the API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, this API is disabled and will return a 403 response. Active Directory LDAP-authenticated users cannot be unsuspended using the API.
",
"bodyParameters": [
{
"type": "string",
@@ -85322,14 +85322,14 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get a random sentence from the Zen of GitHub
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get a random sentence from the Zen of GitHub
"
+ ]
}
]
\ No newline at end of file
diff --git a/lib/rest/static/decorated/ghes-3.2.json b/lib/rest/static/decorated/ghes-3.2.json
index ac8afb5345..a0c45c8893 100644
--- a/lib/rest/static/decorated/ghes-3.2.json
+++ b/lib/rest/static/decorated/ghes-3.2.json
@@ -35,15 +35,15 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get Hypermedia links to resources accessible in GitHub's REST API
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get Hypermedia links to resources accessible in GitHub's REST API
"
+ ]
},
{
"verb": "get",
@@ -129,7 +129,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\",\n \"user\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n }\n]\n
"
}
]
@@ -351,7 +351,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\",\n \"user\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n}\n
"
}
],
@@ -556,7 +556,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\",\n \"user\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n}\n
"
}
]
@@ -769,7 +769,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"form\",\n \"insecure_ssl\": \"0\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n}\n
"
}
],
@@ -960,14 +960,14 @@
"subcategoryLabel": "Global webhooks",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -1036,15 +1036,15 @@
"subcategory": "global-webhooks",
"subcategoryLabel": "Global webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the webhook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the webhook.
"
+ ]
},
{
"verb": "get",
@@ -1152,7 +1152,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false,\n \"last_used\": \"2020-06-11T22:31:57Z\",\n \"user_id\": 1,\n \"repository_id\": 2\n },\n {\n \"key\": \"9Og8iYjAyymI9LvABpJerYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 3,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false,\n \"last_used\": \"2020-06-11T22:31:57Z\",\n \"user_id\": 1,\n \"repository_id\": 2\n }\n]\n
"
}
]
@@ -1207,14 +1207,14 @@
"subcategoryLabel": "Users",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "patch",
@@ -1316,7 +1316,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ldap_dn\": \"cn=Enterprise Ops,ou=teams,dc=github,dc=com\",\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n}\n
"
}
]
@@ -1376,7 +1376,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"queued\"\n}\n
"
}
]
@@ -1474,7 +1474,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\",\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"name\": \"monalisa octocat\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"hireable\": false,\n \"bio\": \"There once was...\",\n \"twitter_username\": \"monatheoctocat\",\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2008-01-14T04:33:35Z\",\n \"private_gists\": 81,\n \"total_private_repos\": 100,\n \"owned_private_repos\": 100,\n \"disk_usage\": 10000,\n \"collaborators\": 8,\n \"two_factor_authentication\": true,\n \"plan\": {\n \"name\": \"Medium\",\n \"space\": 400,\n \"private_repos\": 20,\n \"collaborators\": 0\n }\n}\n
"
}
]
@@ -1534,7 +1534,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"queued\"\n}\n
"
}
]
@@ -1661,7 +1661,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n}\n
"
}
]
@@ -1759,7 +1759,7 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"message\": \"Job queued to rename organization. It may take a few minutes to complete.\",\n \"url\": \"https://<hostname>/api/v3/organizations/1\"\n}\n
"
}
]
@@ -1867,7 +1867,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"name\": \"Default\",\n \"image_url\": \"githubenterprise://internal\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/1\",\n \"default_environment\": true,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 14,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n }\n]\n
"
}
]
@@ -1982,7 +1982,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": null,\n \"message\": null\n }\n}\n
"
}
]
@@ -2049,7 +2049,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": null,\n \"message\": null\n }\n}\n
"
}
]
@@ -2165,13 +2165,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Client Errors",
+ "description": "Client Errors
",
"payload": "{\n \"message\": \"Validation Failed\",\n \"errors\": [\n {\n \"resource\": \"PreReceiveEnvironment\",\n \"code\": \"custom\",\n \"message\": \"Cannot modify or delete the default environment\"\n }\n ]\n}\n
"
}
]
@@ -2238,12 +2238,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Client Errors",
+ "description": "Client Errors
",
"payload": "{\n \"message\": \"Validation Failed\",\n \"errors\": [\n {\n \"resource\": \"PreReceiveEnvironment\",\n \"code\": \"custom\",\n \"message\": \"Cannot modify or delete the default environment\"\n }\n ]\n}\n
"
}
]
@@ -2310,13 +2310,13 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/3/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": null,\n \"message\": null\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Client Errors",
+ "description": "Client Errors
",
"payload": "{\n \"message\": \"Validation Failed\",\n \"errors\": [\n {\n \"resource\": \"PreReceiveEnvironment\",\n \"code\": \"custom\",\n \"message\": \"Can not start a new download when a download is in progress\"\n }\n ]\n}\n
"
}
]
@@ -2383,7 +2383,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/3/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n}\n
"
}
]
@@ -2492,7 +2492,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": false\n }\n]\n
"
}
]
@@ -2633,14 +2633,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": false\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -2700,6 +2692,14 @@
"rawDescription": "Whether enforcement can be overridden at the org or repo level. default: `false`",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": false\n}\n
"
+ }
]
},
{
@@ -2765,7 +2765,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": false\n}\n
"
}
]
@@ -2905,14 +2905,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 1,\n \"name\": \"Default\",\n \"image_url\": \"githubenterprise://internal\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/1\",\n \"default_environment\": true,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": true\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -2972,6 +2964,14 @@
"rawDescription": "Whether enforcement can be overridden at the org or repo level.",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 1,\n \"name\": \"Default\",\n \"image_url\": \"githubenterprise://internal\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/1\",\n \"default_environment\": true,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": true\n}\n
"
+ }
]
},
{
@@ -3032,14 +3032,14 @@
"subcategoryLabel": "Pre receive hooks",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -3107,7 +3107,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 2,\n \"url\": \"https://enterprise.octocat.com/api/v3/authorizations/2\",\n \"app\": {\n \"name\": \"My personal access token\",\n \"url\": \"https://docs.github.com/enterprise/rest/reference/enterprise-admin#list-personal-access-tokens\",\n \"client_id\": \"00000000000000000000\"\n },\n \"token\": \"ghp_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"hashed_token\": \"23cffb2fab1b0a62747863eba88cb9327e561f2f7a0c8661c0d9b83146cb8d45\",\n \"token_last_eight\": \"Ae178B4a\",\n \"note\": \"My personal access token\",\n \"note_url\": null,\n \"created_at\": \"2019-04-24T21:49:02Z\",\n \"updated_at\": \"2019-04-24T21:49:02Z\",\n \"scopes\": [\n \"admin:business\",\n \"admin:gpg_key\",\n \"admin:org\",\n \"admin:org_hook\",\n \"admin:pre_receive_hook\",\n \"admin:public_key\",\n \"admin:repo_hook\",\n \"delete_repo\",\n \"gist\",\n \"notifications\",\n \"repo\",\n \"user\",\n \"write:discussion\"\n ],\n \"fingerprint\": null\n }\n]\n
"
}
]
@@ -3161,15 +3161,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a personal access token. Returns a 403 - Forbidden status when a personal access token is in use. For example, if you access this endpoint with the same personal access token that you are trying to delete, you will receive this error.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a personal access token. Returns a 403 - Forbidden status when a personal access token is in use. For example, if you access this endpoint with the same personal access token that you are trying to delete, you will receive this error.
"
+ ]
},
{
"verb": "post",
@@ -3273,7 +3273,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n}\n
"
}
]
@@ -3371,7 +3371,7 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"message\": \"Job queued to rename user. It may take a few minutes to complete.\",\n \"url\": \"https://api.github.com/user/1\"\n}\n
"
}
]
@@ -3425,15 +3425,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deleting a user will delete all their repositories, gists, applications, and personal settings. Suspending a user is often a better option.
\nYou can delete any user account except your own.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deleting a user will delete all their repositories, gists, applications, and personal settings. Suspending a user is often a better option.
\nYou can delete any user account except your own.
"
+ ]
},
{
"verb": "post",
@@ -3528,7 +3528,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
}
]
@@ -3583,14 +3583,14 @@
"subcategoryLabel": "Users",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -3635,7 +3635,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n}\n
"
}
]
@@ -3705,18 +3705,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDxOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"client_id\": \"Iv1.8a61f9b3a7aba766\",\n \"client_secret\": \"1726be1638095a19edd134c77bde3aa2ece1e5d8\",\n \"webhook_secret\": \"e340154128314309424b7c8e90325147d99fdafa\",\n \"pem\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIIEowIBAAKCAQEAuEPzOUE+kiEH1WLiMeBytTEF856j0hOVcSUSUkZxKvqczkWM\\n9vo1gDyC7ZXhdH9fKh32aapba3RSsp4ke+giSmYTk2mGR538ShSDxh0OgpJmjiKP\\nX0Bj4j5sFqfXuCtl9SkH4iueivv4R53ktqM+n6hk98l6hRwC39GVIblAh2lEM4L/\\n6WvYwuQXPMM5OG2Ryh2tDZ1WS5RKfgq+9ksNJ5Q9UtqtqHkO+E63N5OK9sbzpUUm\\noNaOl3udTlZD3A8iqwMPVxH4SxgATBPAc+bmjk6BMJ0qIzDcVGTrqrzUiywCTLma\\nszdk8GjzXtPDmuBgNn+o6s02qVGpyydgEuqmTQIDAQABAoIBACL6AvkjQVVLn8kJ\\ndBYznJJ4M8ECo+YEgaFwgAHODT0zRQCCgzd+Vxl4YwHmKV2Lr+y2s0drZt8GvYva\\nKOK8NYYZyi15IlwFyRXmvvykF1UBpSXluYFDH7KaVroWMgRreHcIys5LqVSIb6Bo\\ngDmK0yBLPp8qR29s2b7ScZRtLaqGJiX+j55rNzrZwxHkxFHyG9OG+u9IsBElcKCP\\nkYCVE8ZdYexfnKOZbgn2kZB9qu0T/Mdvki8yk3I2bI6xYO24oQmhnT36qnqWoCBX\\nNuCNsBQgpYZeZET8mEAUmo9d+ABmIHIvSs005agK8xRaP4+6jYgy6WwoejJRF5yd\\nNBuF7aECgYEA50nZ4FiZYV0vcJDxFYeY3kYOvVuKn8OyW+2rg7JIQTremIjv8FkE\\nZnwuF9ZRxgqLxUIfKKfzp/5l5LrycNoj2YKfHKnRejxRWXqG+ZETfxxlmlRns0QG\\nJ4+BYL0CoanDSeA4fuyn4Bv7cy/03TDhfg/Uq0Aeg+hhcPE/vx3ebPsCgYEAy/Pv\\neDLssOSdeyIxf0Brtocg6aPXIVaLdus+bXmLg77rJIFytAZmTTW8SkkSczWtucI3\\nFI1I6sei/8FdPzAl62/JDdlf7Wd9K7JIotY4TzT7Tm7QU7xpfLLYIP1bOFjN81rk\\n77oOD4LsXcosB/U6s1blPJMZ6AlO2EKs10UuR1cCgYBipzuJ2ADEaOz9RLWwi0AH\\nPza2Sj+c2epQD9ZivD7Zo/Sid3ZwvGeGF13JyR7kLEdmAkgsHUdu1rI7mAolXMaB\\n1pdrsHureeLxGbRM6za3tzMXWv1Il7FQWoPC8ZwXvMOR1VQDv4nzq7vbbA8z8c+c\\n57+8tALQHOTDOgQIzwK61QKBgERGVc0EJy4Uag+VY8J4m1ZQKBluqo7TfP6DQ7O8\\nM5MX73maB/7yAX8pVO39RjrhJlYACRZNMbK+v/ckEQYdJSSKmGCVe0JrGYDuPtic\\nI9+IGfSorf7KHPoMmMN6bPYQ7Gjh7a++tgRFTMEc8956Hnt4xGahy9NcglNtBpVN\\n6G8jAoGBAMCh028pdzJa/xeBHLLaVB2sc0Fe7993WlsPmnVE779dAz7qMscOtXJK\\nfgtriltLSSD6rTA9hUAsL/X62rY0wdXuNdijjBb/qvrx7CAV6i37NK1CjABNjsfG\\nZM372Ac6zc1EqSrid2IjET1YqyIW2KGLI1R2xbQc98UGlt48OdWu\\n-----END RSA PRIVATE KEY-----\\n\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -3765,7 +3765,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -3877,14 +3877,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for a GitHub App. For more information about configuring a webhook for your app, see \"Creating a GitHub App.\"
\nYou must use a JWT to access this endpoint.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -3934,6 +3926,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -4002,18 +4002,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n },\n {\n \"id\": 123456789,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-04T00:57:16Z\",\n \"redelivery\": true,\n \"duration\": 0.28,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -4072,18 +4072,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456,\n \"url\": \"https://www.example.com\",\n \"request\": {\n \"headers\": {\n \"X-GitHub-Delivery\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"X-Hub-Signature-256\": \"sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"Accept\": \"*/*\",\n \"X-GitHub-Hook-ID\": \"42\",\n \"User-Agent\": \"GitHub-Hookshot/b8c71d8\",\n \"X-GitHub-Event\": \"issues\",\n \"X-GitHub-Hook-Installation-Target-ID\": \"123\",\n \"X-GitHub-Hook-Installation-Target-Type\": \"repository\",\n \"content-type\": \"application/json\",\n \"X-Hub-Signature\": \"sha1=a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\"\n },\n \"payload\": {\n \"action\": \"opened\",\n \"issue\": {\n \"body\": \"foo\"\n },\n \"repository\": {\n \"id\": 123\n }\n }\n },\n \"response\": {\n \"headers\": {\n \"Content-Type\": \"text/html;charset=utf-8\"\n },\n \"payload\": \"ok\"\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -4136,25 +4136,25 @@
"subcategory": "webhooks",
"subcategoryLabel": "Webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Redeliver a delivery for the webhook configured for a GitHub App.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Redeliver a delivery for the webhook configured for a GitHub App.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -4240,7 +4240,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The permissions the installation has are included under the `permissions` key.",
+ "description": "The permissions the installation has are included under the permissions key.
",
"payload": "[\n {\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"selected\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n]\n
"
}
]
@@ -4299,18 +4299,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"selected\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -4362,20 +4362,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Uninstalls a GitHub App on a user, organization, or business account. If you prefer to temporarily suspend an app's access to your account's resources, then we recommend the \"Suspend an app installation\" endpoint.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Uninstalls a GitHub App on a user, organization, or business account. If you prefer to temporarily suspend an app's access to your account's resources, then we recommend the \"Suspend an app installation\" endpoint.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -5303,33 +5303,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"ghs_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"expires_at\": \"2016-07-11T22:14:10Z\",\n \"permissions\": {\n \"issues\": \"write\",\n \"contents\": \"read\"\n },\n \"repository_selection\": \"selected\",\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -6243,20 +6243,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Suspends a GitHub App on a user, organization, or business account, which blocks the app from accessing the account's resources. When a GitHub App is suspended, the app's access to the GitHub Enterprise Server API or webhook events is blocked for that account.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Suspends a GitHub App on a user, organization, or business account, which blocks the app from accessing the account's resources. When a GitHub App is suspended, the app's access to the GitHub Enterprise Server API or webhook events is blocked for that account.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -6306,20 +6306,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a GitHub App installation suspension.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a GitHub App installation suspension.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -6398,28 +6398,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"url\": \"https://api.github.com/applications/grants/1\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"scopes\": [\n \"public_repo\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -6480,23 +6480,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/applications/grants/1\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"scopes\": [\n \"public_repo\"\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -6551,30 +6551,30 @@
"category": "oauth-authorizations",
"categoryLabel": "Oauth authorizations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for your user. Once deleted, the application has no access to your account and is no longer listed on the application authorizations settings screen within GitHub.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for your user. Once deleted, the application has no access to your account and is no longer listed on the application authorizations settings screen within GitHub.
"
+ ]
},
{
"verb": "delete",
@@ -6654,19 +6654,19 @@
"subcategoryLabel": "Oauth applications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "OAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid OAuth access_token as an input parameter and the grant for the token's owner will be deleted.\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the application authorizations settings screen within GitHub.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "OAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid OAuth access_token as an input parameter and the grant for the token's owner will be deleted.\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the application authorizations settings screen within GitHub.
",
"bodyParameters": [
{
"type": "string",
@@ -6741,15 +6741,15 @@
"subcategory": "oauth-applications",
"subcategoryLabel": "Oauth applications",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.
\nOAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid token as :access_token and the grant for the token's owner will be deleted.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the Applications settings page under \"Authorized OAuth Apps\" on GitHub Enterprise Server.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.
\nOAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid token as :access_token and the grant for the token's owner will be deleted.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the Applications settings page under \"Authorized OAuth Apps\" on GitHub Enterprise Server.
"
+ ]
},
{
"verb": "post",
@@ -6842,18 +6842,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -6948,13 +6948,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -7036,19 +7036,19 @@
"subcategoryLabel": "Oauth applications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "OAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "OAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
",
"bodyParameters": [
{
"type": "string",
@@ -8022,28 +8022,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"installation\": {\n \"permissions\": {\n \"metadata\": \"read\",\n \"issues\": \"write\",\n \"contents\": \"read\"\n },\n \"repository_selection\": \"selected\",\n \"single_file_name\": \".github/workflow.yml\",\n \"repositories_url\": \"https://api.github.com/user/repos\",\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"has_multiple_single_files\": false,\n \"single_file_paths\": []\n }\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -9007,13 +9007,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -9085,7 +9085,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -9152,15 +9152,15 @@
"subcategory": "oauth-applications",
"subcategoryLabel": "Oauth applications",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.
\nOAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.
\nOAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
"
+ ]
},
{
"verb": "get",
@@ -9215,23 +9215,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -9312,28 +9312,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 2,\n \"url\": \"https://enterprise.octocat.com/api/v3/authorizations/2\",\n \"app\": {\n \"name\": \"My personal access token\",\n \"url\": \"https://docs.github.com/enterprise/rest/reference/enterprise-admin#list-personal-access-tokens\",\n \"client_id\": \"00000000000000000000\"\n },\n \"token\": \"ghp_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"hashed_token\": \"23cffb2fab1b0a62747863eba88cb9327e561f2f7a0c8661c0d9b83146cb8d45\",\n \"token_last_eight\": \"Ae178B4a\",\n \"note\": \"My personal access token\",\n \"note_url\": null,\n \"created_at\": \"2019-04-24T21:49:02Z\",\n \"updated_at\": \"2019-04-24T21:49:02Z\",\n \"scopes\": [\n \"admin:business\",\n \"admin:gpg_key\",\n \"admin:org\",\n \"admin:org_hook\",\n \"admin:pre_receive_hook\",\n \"admin:public_key\",\n \"admin:repo_hook\",\n \"delete_repo\",\n \"gist\",\n \"notifications\",\n \"repo\",\n \"user\",\n \"write:discussion\"\n ],\n \"fingerprint\": null\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -9527,33 +9527,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -9741,34 +9741,34 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if returning an existing token",
+ "description": "if returning an existing token
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "**Deprecation Notice:** GitHub will discontinue the [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.2/rest/reference/oauth-authorizations), which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our [web application flow](https://docs.github.com/enterprise-server@3.2/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow). The [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.2/rest/reference/oauth-authorizations) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/changes/2020-02-14-deprecating-oauth-auth-endpoint/).",
+ "description": "Deprecation Notice: GitHub will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -9947,19 +9947,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if returning an existing token",
+ "description": "if returning an existing token
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response if returning a new token",
+ "description": "Response if returning a new token
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2012-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -10020,23 +10020,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -10249,13 +10249,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -10310,30 +10310,30 @@
"category": "oauth-authorizations",
"categoryLabel": "Oauth authorizations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
"
+ ]
},
{
"verb": "get",
@@ -10378,13 +10378,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"citizen_code_of_conduct\",\n \"name\": \"Citizen Code of Conduct\",\n \"url\": \"https://api.github.com/codes_of_conduct/citizen_code_of_conduct\",\n \"html_url\": \"http://citizencodeofconduct.org/\"\n },\n {\n \"key\": \"contributor_covenant\",\n \"name\": \"Contributor Covenant\",\n \"url\": \"https://api.github.com/codes_of_conduct/contributor_covenant\",\n \"html_url\": \"https://www.contributor-covenant.org/version/2/0/code_of_conduct/\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -10441,18 +10441,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"contributor_covenant\",\n \"name\": \"Contributor Covenant\",\n \"url\": \"https://api.github.com/codes_of_conduct/contributor_covenant\",\n \"body\": \"# Contributor Covenant Code of Conduct\\n\\n## Our Pledge\\n\\nIn the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.\\n\\n## Our Standards\\n\\nExamples of behavior that contributes to creating a positive environment include:\\n\\n* Using welcoming and inclusive language\\n* Being respectful of differing viewpoints and experiences\\n* Gracefully accepting constructive criticism\\n* Focusing on what is best for the community\\n* Showing empathy towards other community members\\n\\nExamples of unacceptable behavior by participants include:\\n\\n* The use of sexualized language or imagery and unwelcome sexual attention or advances\\n* Trolling, insulting/derogatory comments, and personal or political attacks\\n* Public or private harassment\\n* Publishing others' private information, such as a physical or electronic address, without explicit permission\\n* Other conduct which could reasonably be considered inappropriate in a professional setting\\n\\n## Our Responsibilities\\n\\nProject maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response\\n to any instances of unacceptable behavior.\\n\\nProject maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.\\n\\n## Scope\\n\\nThis Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address,\\n posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.\\n\\n## Enforcement\\n\\nInstances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [EMAIL]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.\\n\\nProject maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.\\n\\n## Attribution\\n\\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]\\n\\n[homepage]: http://contributor-covenant.org\\n[version]: http://contributor-covenant.org/version/1/4/\\n\",\n \"html_url\": \"http://contributor-covenant.org/version/1/4/\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -10493,20 +10493,20 @@
"category": "emojis",
"categoryLabel": "Emojis",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Lists all the emojis available to use on GitHub Enterprise Server.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Lists all the emojis available to use on GitHub Enterprise Server.
"
+ ]
},
{
"verb": "get",
@@ -10698,15 +10698,15 @@
"subcategory": "announcement",
"subcategoryLabel": "Announcement",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes the global announcement banner in your enterprise.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes the global announcement banner in your enterprise.
"
+ ]
},
{
"verb": "get",
@@ -10753,7 +10753,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"seats\": 1400,\n \"seats_used\": 1316,\n \"seats_available\": 84,\n \"kind\": \"standard\",\n \"days_until_expiration\": 365,\n \"expire_at\": \"2016/02/06 12:41:52 -0600\"\n}\n
"
}
]
@@ -10803,7 +10803,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"repos\": {\n \"total_repos\": 212,\n \"root_repos\": 194,\n \"fork_repos\": 18,\n \"org_repos\": 51,\n \"total_pushes\": 3082,\n \"total_wikis\": 15\n },\n \"hooks\": {\n \"total_hooks\": 27,\n \"active_hooks\": 23,\n \"inactive_hooks\": 4\n },\n \"pages\": {\n \"total_pages\": 36\n },\n \"orgs\": {\n \"total_orgs\": 33,\n \"disabled_orgs\": 0,\n \"total_teams\": 60,\n \"total_team_members\": 314\n },\n \"users\": {\n \"total_users\": 254,\n \"admin_users\": 45,\n \"suspended_users\": 21\n },\n \"pulls\": {\n \"total_pulls\": 86,\n \"merged_pulls\": 60,\n \"mergeable_pulls\": 21,\n \"unmergeable_pulls\": 3\n },\n \"issues\": {\n \"total_issues\": 179,\n \"open_issues\": 83,\n \"closed_issues\": 96\n },\n \"milestones\": {\n \"total_milestones\": 7,\n \"open_milestones\": 6,\n \"closed_milestones\": 1\n },\n \"gists\": {\n \"total_gists\": 178,\n \"private_gists\": 151,\n \"public_gists\": 25\n },\n \"comments\": {\n \"total_commit_comments\": 6,\n \"total_gist_comments\": 28,\n \"total_issue_comments\": 366,\n \"total_pull_request_comments\": 30\n }\n}\n
"
}
]
@@ -10848,14 +10848,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10897,14 +10897,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10945,14 +10945,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10994,14 +10994,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11043,14 +11043,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11092,14 +11092,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11141,14 +11141,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11190,14 +11190,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11238,14 +11238,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11287,14 +11287,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11352,7 +11352,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled_organizations\": \"all\",\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/enterprises/2/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -11455,14 +11455,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for organizations and allowed actions in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for organizations and allowed actions in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"type": "string",
@@ -11570,7 +11570,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"organizations\": [\n {\n \"login\": \"octocat\",\n \"id\": 161335,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"url\": \"https://api.github.com/orgs/octo-org\",\n \"repos_url\": \"https://api.github.com/orgs/octo-org/repos\",\n \"events_url\": \"https://api.github.com/orgs/octo-org/events\",\n \"hooks_url\": \"https://api.github.com/orgs/octo-org/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/octo-org/issues\",\n \"members_url\": \"https://api.github.com/orgs/octo-org/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/octo-org/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n ]\n}\n
"
}
]
@@ -11660,14 +11660,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of organization IDs to enable for GitHub Actions.
",
@@ -11744,15 +11744,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds an organization to the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds an organization to the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -11814,15 +11814,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization from the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization from the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -11880,7 +11880,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -11985,14 +11985,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"type": "boolean",
@@ -12093,7 +12093,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"runner_groups\": [\n {\n \"id\": 1,\n \"name\": \"Default\",\n \"visibility\": \"all\",\n \"default\": true,\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/1/runners\",\n \"allows_public_repositories\": false\n },\n {\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/2/runners\",\n \"allows_public_repositories\": true\n },\n {\n \"id\": 3,\n \"name\": \"expensive-hardware\",\n \"visibility\": \"private\",\n \"default\": false,\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/3/runners\",\n \"allows_public_repositories\": true\n }\n ]\n}\n
"
}
]
@@ -12299,7 +12299,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": false\n}\n
"
}
]
@@ -12370,7 +12370,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": false\n}\n
"
}
]
@@ -12525,7 +12525,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"Expensive hardware runners\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -12590,15 +12590,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a self-hosted runner group for an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a self-hosted runner group for an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -12686,7 +12686,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"organizations\": [\n {\n \"login\": \"octocat\",\n \"id\": 161335,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"url\": \"https://api.github.com/orgs/octo-org\",\n \"repos_url\": \"https://api.github.com/orgs/octo-org/repos\",\n \"events_url\": \"https://api.github.com/orgs/octo-org/events\",\n \"hooks_url\": \"https://api.github.com/orgs/octo-org/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/octo-org/issues\",\n \"members_url\": \"https://api.github.com/orgs/octo-org/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/octo-org/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n ]\n}\n
"
}
]
@@ -12786,14 +12786,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of organizations that have access to a self-hosted runner configured in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of organizations that have access to a self-hosted runner configured in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of organization IDs that can access the runner group.
",
@@ -12880,15 +12880,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds an organization to the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds an organization to the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -12960,15 +12960,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization from the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization from the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -13056,7 +13056,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -13156,14 +13156,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of self-hosted runners that are part of an enterprise runner group.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of self-hosted runners that are part of an enterprise runner group.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of runner IDs to add to the runner group.
",
@@ -13250,15 +13250,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise\nscope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise\nscope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -13330,15 +13330,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a self-hosted runner from a group configured in an enterprise. The runner is then returned to the default group.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a self-hosted runner from a group configured in an enterprise. The runner is then returned to the default group.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -13416,7 +13416,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -13477,7 +13477,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"os\": \"osx\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-osx-x64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-osx-x64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"f1fa173889dc9036cd529417e652e1729e5a3f4d35ec0151806d7480fda6b89b\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-x64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-x64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"02d710fc9e0008e641274bb7da7fde61f7c9aa1cbb541a2990d3450cc88f4e98\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-arm-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIyYTEzZDRmZC01ZDhkLTRjNzgtYjg2MS0zYTMxZGQ3MmYzNjQiLCJzaWQiOiI0MzZiNTg3YS04ODMyLTRiMTMtOWM2Ny05OWRkMjA2ZTQzNmMiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MzE1NzEsImV4cCI6MTYxNzkzNTc3MX0.PMhU7-MOnZRDj5k5a4ieeFlQCmKPl2pQvpVRhGZq-9ByKF5s9G0rsnGBxDcolTYlbvEAmSSkeAEwF486F7P0kMVEb-GI14WbErqqMSyaPL81c3W7UHxMJLaSBnDs9ftHMv_IkJmRzaROS8q1ObzUW-ErlltxCdj2zF_5ruK9G2RR566AOAtiA3AHV6k7-FCY5--sDYJN_YXPgpwI0fPN1TM92fdPm93hJnoXuCJNpBYp1vl5W4gwGtU_Pa07ESdqqFN1YJJHUloedNhiIOczGfGVSapRc8vyGm9P_VCM_yKD8JI-MkOXl8JI5fCfhmjmKsw-vSAh9NW67RGvmehmpw\",\n \"sha256_checksum\": \"2f2bda21e2fd8fed6938b33182a293f6b1f74e4c5d09acd6d9a0fe3f979f5c85\"\n },\n {\n \"os\": \"win\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-win-x64-2.277.1.zip\",\n \"filename\": \"actions-runner-win-x64-2.277.1.zip\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"7215c75a462eeb6a839fa8ed298d79f620617d44d47d37c583114fc3f3b27b30\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-arm64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"a6aa6dd0ba217118ef2b4ea24e9e0a85b02b13c38052a5de0776d6ced3a79c64\"\n }\n]\n
"
}
]
@@ -13538,7 +13538,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"LLBF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-22T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -13599,7 +13599,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"AABF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-29T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -13670,7 +13670,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 23,\n \"name\": \"MBP\",\n \"os\": \"macos\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
}
]
@@ -13735,15 +13735,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from an enterprise. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from an enterprise. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -13805,30 +13805,30 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "We delay the public events feed by five minutes, which means the most recent event returned by the public events API actually occurred at least five minutes ago.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "We delay the public events feed by five minutes, which means the most recent event returned by the public events API actually occurred at least five minutes ago.
"
+ ]
},
{
"verb": "get",
@@ -13875,7 +13875,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"timeline_url\": \"https://github.com/timeline\",\n \"user_url\": \"https://github.com/{user}\",\n \"current_user_public_url\": \"https://github.com/octocat\",\n \"current_user_url\": \"https://github.com/octocat.private?token=abc123\",\n \"current_user_actor_url\": \"https://github.com/octocat.private.actor?token=abc123\",\n \"current_user_organization_url\": \"\",\n \"current_user_organization_urls\": [\n \"https://github.com/organizations/github/octocat.private.atom?token=abc123\"\n ],\n \"security_advisories_url\": \"https://github.com/security-advisories\",\n \"_links\": {\n \"timeline\": {\n \"href\": \"https://github.com/timeline\",\n \"type\": \"application/atom+xml\"\n },\n \"user\": {\n \"href\": \"https://github.com/{user}\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_public\": {\n \"href\": \"https://github.com/octocat\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user\": {\n \"href\": \"https://github.com/octocat.private?token=abc123\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_actor\": {\n \"href\": \"https://github.com/octocat.private.actor?token=abc123\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_organization\": {\n \"href\": \"\",\n \"type\": \"\"\n },\n \"current_user_organizations\": [\n {\n \"href\": \"https://github.com/organizations/github/octocat.private.atom?token=abc123\",\n \"type\": \"application/atom+xml\"\n }\n ]\n }\n}\n
"
}
]
@@ -13955,18 +13955,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -14085,34 +14085,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Allows you to add a new gist with one or more files.
\nNote: Don't name your files \"gistfile\" with a numerical suffix. This is the format of the automatic naming scheme that Gist uses internally.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
- },
- {
- "httpStatusCode": "304",
- "httpStatusMessage": "Not Modified",
- "description": "Not modified"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"description": "Description of the gist
",
@@ -14175,6 +14147,34 @@
"type": "boolean or string",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "304",
+ "httpStatusMessage": "Not Modified",
+ "description": "Not modified
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -14252,23 +14252,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -14347,23 +14347,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -14421,23 +14421,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden Gist"
+ "description": "Forbidden Gist
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -14572,24 +14572,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Allows you to update or delete a gist file and rename gist files. Files from the previous version of the gist that aren't explicitly changed during an edit are unchanged.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"description": "Description of the gist
",
@@ -14647,6 +14629,24 @@
"rawDescription": "Names of files to be updated",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -14698,29 +14698,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -14798,23 +14798,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -14913,23 +14913,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -14999,23 +14999,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden Gist"
+ "description": "Forbidden Gist
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -15124,13 +15124,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -15195,29 +15195,29 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -15293,23 +15293,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/57a7f021a713b1c5a6a199b54cc514735d2d462f\",\n \"version\": \"57a7f021a713b1c5a6a199b54cc514735d2d462f\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"change_status\": {\n \"deletions\": 0,\n \"additions\": 180,\n \"total\": 180\n },\n \"committed_at\": \"2010-04-14T02:15:15Z\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -15387,23 +15387,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 1,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -15461,28 +15461,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -15535,29 +15535,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if gist is starred"
+ "description": "Response if gist is starred
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if gist is not starred"
+ "description": "Not Found if gist is not starred
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -15607,30 +15607,30 @@
"category": "gists",
"categoryLabel": "Gists",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -15681,29 +15681,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -15768,23 +15768,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -15831,13 +15831,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"Actionscript\",\n \"Android\",\n \"AppceleratorTitanium\",\n \"Autotools\",\n \"Bancha\",\n \"C\",\n \"C++\"\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -15894,13 +15894,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"C\",\n \"source\": \"# Object files\\n*.o\\n\\n# Libraries\\n*.lib\\n*.a\\n\\n# Shared objects (inc. Windows DLLs)\\n*.dll\\n*.so\\n*.so.*\\n*.dylib\\n\\n# Executables\\n*.exe\\n*.out\\n*.app\\n\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -15977,23 +15977,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -16036,15 +16036,15 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Revokes the installation token you're using to authenticate as an installation and access this endpoint.
\nOnce an installation token is revoked, the token is invalidated and cannot be used. Other endpoints that require the revoked installation token must have a new installation token to work. You can create a new token using the \"Create an installation access token for an app\" endpoint.
\nYou must use an installation access token to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Revokes the installation token you're using to authenticate as an installation and access this endpoint.
\nOnce an installation token is revoked, the token is invalidated and cannot be used. Other endpoints that require the revoked installation token must have a new installation token to work. You can create a new token using the \"Create an installation access token for an app\" endpoint.
\nYou must use an installation access token to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -16244,23 +16244,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -16337,13 +16337,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"lgpl-3.0\",\n \"name\": \"GNU Lesser General Public License v3.0\",\n \"spdx_id\": \"LGPL-3.0\",\n \"url\": \"https://api.github.com/licenses/lgpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"mpl-2.0\",\n \"name\": \"Mozilla Public License 2.0\",\n \"spdx_id\": \"MPL-2.0\",\n \"url\": \"https://api.github.com/licenses/mpl-2.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"agpl-3.0\",\n \"name\": \"GNU Affero General Public License v3.0\",\n \"spdx_id\": \"AGPL-3.0\",\n \"url\": \"https://api.github.com/licenses/agpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"unlicense\",\n \"name\": \"The Unlicense\",\n \"spdx_id\": \"Unlicense\",\n \"url\": \"https://api.github.com/licenses/unlicense\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"apache-2.0\",\n \"name\": \"Apache License 2.0\",\n \"spdx_id\": \"Apache-2.0\",\n \"url\": \"https://api.github.com/licenses/apache-2.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"gpl-3.0\",\n \"name\": \"GNU General Public License v3.0\",\n \"spdx_id\": \"GPL-3.0\",\n \"url\": \"https://api.github.com/licenses/gpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -16400,23 +16400,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"http://choosealicense.com/licenses/mit/\",\n \"description\": \"A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty.\",\n \"implementation\": \"Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders.\",\n \"permissions\": [\n \"commercial-use\",\n \"modifications\",\n \"distribution\",\n \"sublicense\",\n \"private-use\"\n ],\n \"conditions\": [\n \"include-copyright\"\n ],\n \"limitations\": [\n \"no-liability\"\n ],\n \"body\": \"\\n\\nThe MIT License (MIT)\\n\\nCopyright (c) [year] [fullname]\\n\\nPermission is hereby granted, free of charge, to any person obtaining a copy\\nof this software and associated documentation files (the \\\"Software\\\"), to deal\\nin the Software without restriction, including without limitation the rights\\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\\ncopies of the Software, and to permit persons to whom the Software is\\nfurnished to do so, subject to the following conditions:\\n\\nThe above copyright notice and this permission notice shall be included in all\\ncopies or substantial portions of the Software.\\n\\nTHE SOFTWARE IS PROVIDED \\\"AS IS\\\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\\nSOFTWARE.\\n\",\n \"featured\": true\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -16511,12 +16511,12 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
],
"bodyParameters": [
@@ -16608,20 +16608,20 @@
"categoryLabel": "Markdown",
"contentType": "text/plain",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "You must send Markdown as plain text (using a Content-Type header of text/plain or text/x-markdown) to this endpoint, rather than using JSON format. In raw mode, GitHub Flavored Markdown is not supported and Markdown will be rendered in plain format like a README.md file. Markdown content must be 400 KB or less.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "You must send Markdown as plain text (using a Content-Type header of text/plain or text/x-markdown) to this endpoint, rather than using JSON format. In raw mode, GitHub Flavored Markdown is not supported and Markdown will be rendered in plain format like a README.md file. Markdown content must be 400 KB or less.
"
+ ]
},
{
"verb": "get",
@@ -16666,13 +16666,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"verifiable_password_authentication\": true,\n \"packages\": [\n \"192.30.252.0/22\"\n ],\n \"dependabot\": [\n \"54.158.161.132\"\n ],\n \"installed_version\": \"3.2.0\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -16755,34 +16755,34 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -16894,28 +16894,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -16990,34 +16990,34 @@
"subcategoryLabel": "Notifications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Marks all notifications as \"read\" removes it from the default view on GitHub Enterprise Server. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub Enterprise Server will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
],
- "descriptionHTML": "Marks all notifications as \"read\" removes it from the default view on GitHub Enterprise Server. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub Enterprise Server will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"bodyParameters": [
{
"description": "Describes the last point that notifications were checked.
",
@@ -17096,23 +17096,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -17167,24 +17167,24 @@
"subcategoryLabel": "Notifications",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -17242,23 +17242,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/notifications/threads/1/subscription\",\n \"thread_url\": \"https://api.github.com/notifications/threads/1\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -17352,23 +17352,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/notifications/threads/1/subscription\",\n \"thread_url\": \"https://api.github.com/notifications/threads/1\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -17422,30 +17422,30 @@
"subcategory": "notifications",
"subcategoryLabel": "Notifications",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Mutes all future notifications for a conversation until you comment on the thread or get an @mention. If you are watching the repository of the thread, you will still receive notifications. To ignore future notifications for a repository you are watching, use the Set a thread subscription endpoint and set ignore to true.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Mutes all future notifications for a conversation until you comment on the thread or get an @mention. If you are watching the repository of the thread, you will still receive notifications. To ignore future notifications for a repository you are watching, use the Set a thread subscription endpoint and set ignore to true.
"
+ ]
},
{
"verb": "get",
@@ -17494,15 +17494,15 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get the octocat as ASCII art
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get the octocat as ASCII art
"
+ ]
},
{
"verb": "get",
@@ -17568,13 +17568,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -17643,7 +17643,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -18086,18 +18086,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"twitter_username\": \"github\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"type\": \"Organization\",\n \"total_private_repos\": 100,\n \"owned_private_repos\": 100,\n \"private_gists\": 81,\n \"disk_usage\": 10000,\n \"collaborators\": 8,\n \"billing_email\": \"mona@github.com\",\n \"plan\": {\n \"name\": \"Medium\",\n \"space\": 400,\n \"private_repos\": 20\n },\n \"default_repository_permission\": \"read\",\n \"members_can_create_repositories\": true,\n \"two_factor_requirement_enabled\": true,\n \"members_allowed_repository_creation_type\": \"all\",\n \"members_can_create_public_repositories\": false,\n \"members_can_create_private_repositories\": false,\n \"members_can_create_internal_repositories\": false,\n \"members_can_create_pages\": true,\n \"members_can_create_public_pages\": true,\n \"members_can_create_private_pages\": true,\n \"members_can_fork_private_repositories\": false,\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -18156,7 +18156,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled_repositories\": \"all\",\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/organizations/42/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -18258,14 +18258,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for repositories and allowed actions in an organization.
\nIf the organization belongs to an enterprise that has set restrictive permissions at the enterprise level, such as allowed_actions to selected actions, then you cannot override them for the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for repositories and allowed actions in an organization.
\nIf the organization belongs to an enterprise that has set restrictive permissions at the enterprise level, such as allowed_actions to selected actions, then you cannot override them for the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"type": "string",
@@ -18372,7 +18372,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
}
]
@@ -18461,14 +18461,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"description": "Required. List of repository IDs to enable for GitHub Actions.
",
@@ -18543,15 +18543,15 @@
"subcategory": "permissions",
"subcategoryLabel": "Permissions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
"
+ ]
},
{
"verb": "delete",
@@ -18611,15 +18611,15 @@
"subcategory": "permissions",
"subcategoryLabel": "Permissions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
"
+ ]
},
{
"verb": "get",
@@ -18676,7 +18676,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -18780,14 +18780,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in an organization. To use this endpoint, the organization permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nIf the organization belongs to an enterprise that has selected actions set at the enterprise level, then you cannot override any of the enterprise's allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the organization must belong to an enterprise. If the organization does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories in the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in an organization. To use this endpoint, the organization permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nIf the organization belongs to an enterprise that has selected actions set at the enterprise level, then you cannot override any of the enterprise's allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the organization must belong to an enterprise. If the organization does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories in the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -18887,7 +18887,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"runner_groups\": [\n {\n \"id\": 1,\n \"name\": \"Default\",\n \"visibility\": \"all\",\n \"default\": true,\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/1/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n },\n {\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": true,\n \"allows_public_repositories\": true\n },\n {\n \"id\": 3,\n \"name\": \"expensive-hardware\",\n \"visibility\": \"private\",\n \"default\": false,\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/3/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n }\n ]\n}\n
"
}
]
@@ -19096,7 +19096,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner-groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -19166,7 +19166,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -19323,7 +19323,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner-groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -19387,15 +19387,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a self-hosted runner group for an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a self-hosted runner group for an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -19482,7 +19482,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"organization\": null,\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
}
]
@@ -19581,14 +19581,14 @@
"subcategoryLabel": "Self hosted runner groups",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of repositories that have access to a self-hosted runner group configured in an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of repositories that have access to a self-hosted runner group configured in an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of repository IDs that can access the runner group.
",
@@ -19673,15 +19673,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -19751,15 +19751,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -19846,7 +19846,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -19945,14 +19945,14 @@
"subcategoryLabel": "Self hosted runner groups",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of self-hosted runners that are part of an organization runner group.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of self-hosted runners that are part of an organization runner group.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of runner IDs to add to the runner group.
",
@@ -20038,15 +20038,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -20117,15 +20117,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a self-hosted runner from a group configured in an organization. The runner is then returned to the default group.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a self-hosted runner from a group configured in an organization. The runner is then returned to the default group.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -20202,7 +20202,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -20262,7 +20262,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"os\": \"osx\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-osx-x64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-osx-x64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"f1fa173889dc9036cd529417e652e1729e5a3f4d35ec0151806d7480fda6b89b\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-x64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-x64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"02d710fc9e0008e641274bb7da7fde61f7c9aa1cbb541a2990d3450cc88f4e98\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-arm-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIyYTEzZDRmZC01ZDhkLTRjNzgtYjg2MS0zYTMxZGQ3MmYzNjQiLCJzaWQiOiI0MzZiNTg3YS04ODMyLTRiMTMtOWM2Ny05OWRkMjA2ZTQzNmMiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MzE1NzEsImV4cCI6MTYxNzkzNTc3MX0.PMhU7-MOnZRDj5k5a4ieeFlQCmKPl2pQvpVRhGZq-9ByKF5s9G0rsnGBxDcolTYlbvEAmSSkeAEwF486F7P0kMVEb-GI14WbErqqMSyaPL81c3W7UHxMJLaSBnDs9ftHMv_IkJmRzaROS8q1ObzUW-ErlltxCdj2zF_5ruK9G2RR566AOAtiA3AHV6k7-FCY5--sDYJN_YXPgpwI0fPN1TM92fdPm93hJnoXuCJNpBYp1vl5W4gwGtU_Pa07ESdqqFN1YJJHUloedNhiIOczGfGVSapRc8vyGm9P_VCM_yKD8JI-MkOXl8JI5fCfhmjmKsw-vSAh9NW67RGvmehmpw\",\n \"sha256_checksum\": \"2f2bda21e2fd8fed6938b33182a293f6b1f74e4c5d09acd6d9a0fe3f979f5c85\"\n },\n {\n \"os\": \"win\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-win-x64-2.277.1.zip\",\n \"filename\": \"actions-runner-win-x64-2.277.1.zip\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"7215c75a462eeb6a839fa8ed298d79f620617d44d47d37c583114fc3f3b27b30\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-arm64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"a6aa6dd0ba217118ef2b4ea24e9e0a85b02b13c38052a5de0776d6ced3a79c64\"\n }\n]\n
"
}
]
@@ -20322,7 +20322,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"LLBF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-22T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -20382,7 +20382,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"AABF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-29T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -20452,7 +20452,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 23,\n \"name\": \"MBP\",\n \"os\": \"macos\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
}
]
@@ -20516,15 +20516,15 @@
"subcategory": "self-hosted-runners",
"subcategoryLabel": "Self hosted runners",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from an organization. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from an organization. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -20601,7 +20601,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"secrets\": [\n {\n \"name\": \"GIST_ID\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"private\"\n },\n {\n \"name\": \"DEPLOY_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"all\"\n },\n {\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"selected\",\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories\"\n }\n ]\n}\n
"
}
]
@@ -20661,7 +20661,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -20731,7 +20731,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"selected\",\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories\"\n}\n
"
}
]
@@ -20774,7 +20774,7 @@
}
],
"summary": "Create or update an organization secret",
- "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -20869,15 +20869,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to\nuse this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to\nuse this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -20985,15 +20985,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in an organization using the secret name. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in an organization using the secret name. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -21080,7 +21080,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n }\n ]\n}\n
"
}
]
@@ -21177,14 +21177,14 @@
"subcategoryLabel": "Secrets",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces all repositories for an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces all repositories for an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"bodyParameters": [
{
"type": "array of integers",
@@ -21268,20 +21268,20 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "No Content when repository was added to the selected list"
+ "description": "No Content when repository was added to the selected list
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when visibility type is not set to selected"
+ "description": "Conflict when visibility type is not set to selected
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -21351,20 +21351,20 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when repository was removed from the selected list"
+ "description": "Response when repository was removed from the selected list
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when visibility type not set to selected"
+ "description": "Conflict when visibility type not set to selected
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -21483,7 +21483,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"@timestamp\": 1606929874512,\n \"action\": \"team.add_member\",\n \"actor\": \"octocat\",\n \"created_at\": 1606929874512,\n \"_document_id\": \"xJJFlFOhQ6b-5vaAFy9Rjw\",\n \"org\": \"octo-corp\",\n \"team\": \"octo-corp/example-team\",\n \"user\": \"monalisa\"\n },\n {\n \"@timestamp\": 1606507117008,\n \"action\": \"org.create\",\n \"actor\": \"octocat\",\n \"created_at\": 1606507117008,\n \"_document_id\": \"Vqvg6kZ4MYqwWRKFDzlMoQ\",\n \"org\": \"octocat-test-org\"\n },\n {\n \"@timestamp\": 1605719148837,\n \"action\": \"repo.destroy\",\n \"actor\": \"monalisa\",\n \"created_at\": 1605719148837,\n \"_document_id\": \"LwW2vpJZCDS-WUmo9Z-ifw\",\n \"org\": \"mona-org\",\n \"repo\": \"mona-org/mona-test-repo\",\n \"visibility\": \"private\"\n }\n]\n
"
}
]
@@ -21558,14 +21558,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -21642,13 +21642,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"deliveries_url\": \"https://api.github.com/orgs/octocat/hooks/1/deliveries\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -21923,18 +21923,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"deliveries_url\": \"https://api.github.com/orgs/octocat/hooks/1/deliveries\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -22192,13 +22192,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"deliveries_url\": \"https://api.github.com/orgs/octocat/hooks/1/deliveries\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -22436,18 +22436,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"name\": \"web\",\n \"events\": [\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -22664,19 +22664,19 @@
"subcategoryLabel": "Webhooks",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -22742,7 +22742,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -22874,14 +22874,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for an organization. To update more information about the webhook, including the active state and events, use \"Update an organization webhook .\"
\nAccess tokens must have the admin:org_hook scope, and GitHub Apps must have the organization_hooks:write permission.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -22931,6 +22923,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -23017,18 +23017,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n },\n {\n \"id\": 123456789,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-04T00:57:16Z\",\n \"redelivery\": true,\n \"duration\": 0.28,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -23105,18 +23105,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456,\n \"url\": \"https://www.example.com\",\n \"request\": {\n \"headers\": {\n \"X-GitHub-Delivery\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"X-Hub-Signature-256\": \"sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"Accept\": \"*/*\",\n \"X-GitHub-Hook-ID\": \"42\",\n \"User-Agent\": \"GitHub-Hookshot/b8c71d8\",\n \"X-GitHub-Event\": \"issues\",\n \"X-GitHub-Hook-Installation-Target-ID\": \"123\",\n \"X-GitHub-Hook-Installation-Target-Type\": \"repository\",\n \"content-type\": \"application/json\",\n \"X-Hub-Signature\": \"sha1=a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\"\n },\n \"payload\": {\n \"action\": \"opened\",\n \"issue\": {\n \"body\": \"foo\"\n },\n \"repository\": {\n \"id\": 123\n }\n }\n },\n \"response\": {\n \"headers\": {\n \"Content-Type\": \"text/html;charset=utf-8\"\n },\n \"payload\": \"ok\"\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -23187,25 +23187,25 @@
"subcategory": "webhooks",
"subcategoryLabel": "Webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Redeliver a delivery for a webhook configured in an organization.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Redeliver a delivery for a webhook configured in an organization.
"
+ ]
},
{
"verb": "post",
@@ -23265,20 +23265,20 @@
"subcategory": "webhooks",
"subcategoryLabel": "Webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the hook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the hook.
"
+ ]
},
{
"verb": "get",
@@ -23333,7 +23333,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
}
]
@@ -23411,7 +23411,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"installations\": [\n {\n \"id\": 25381,\n \"account\": {\n \"login\": \"octo-org\",\n \"id\": 6811672,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjY4MTE2NzI=\",\n \"avatar_url\": \"https://avatars3.githubusercontent.com/u/6811672?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octo-org\",\n \"html_url\": \"https://github.com/octo-org\",\n \"followers_url\": \"https://api.github.com/users/octo-org/followers\",\n \"following_url\": \"https://api.github.com/users/octo-org/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octo-org/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octo-org/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octo-org/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octo-org/orgs\",\n \"repos_url\": \"https://api.github.com/users/octo-org/repos\",\n \"events_url\": \"https://api.github.com/users/octo-org/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octo-org/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"selected\",\n \"access_tokens_url\": \"https://api.github.com/app/installations/25381/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/octo-org/settings/installations/25381\",\n \"app_id\": 2218,\n \"target_id\": 6811672,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"deployments\": \"write\",\n \"metadata\": \"read\",\n \"pull_requests\": \"read\",\n \"statuses\": \"read\"\n },\n \"events\": [\n \"deployment\",\n \"deployment_status\"\n ],\n \"created_at\": \"2017-05-16T08:47:09.000-07:00\",\n \"updated_at\": \"2017-06-06T11:23:23.000-07:00\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n ]\n}\n
"
}
]
@@ -23587,13 +23587,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -23703,18 +23703,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response if requester is not an organization member"
+ "description": "Response if requester is not an organization member
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -23776,25 +23776,25 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Check if a user is, publicly or privately, a member of the organization.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if requester is an organization member and user is a member"
+ "description": "Response if requester is an organization member and user is a member
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response if requester is not an organization member"
+ "description": "Response if requester is not an organization member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if requester is an organization member and user is not a member"
+ "description": "Not Found if requester is an organization member and user is not a member
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Check if a user is, publicly or privately, a member of the organization.
"
+ ]
},
{
"verb": "delete",
@@ -23854,20 +23854,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removing a user from this list will remove them from all teams and they will no longer have any access to the organization's repositories.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removing a user from this list will remove them from all teams and they will no longer have any access to the organization's repositories.
"
+ ]
},
{
"verb": "get",
@@ -23939,12 +23939,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -24060,12 +24060,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -24127,25 +24127,25 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "In order to remove a user's membership with an organization, the authenticated user must be an organization owner.
\nIf the specified user is an active member of the organization, this will remove them from the organization. If the specified user has been invited to the organization, this will cancel their invitation. The specified user will receive an email notification in both cases.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "In order to remove a user's membership with an organization, the authenticated user must be an organization owner.
\nIf the specified user is an active member of the organization, this will remove them from the organization. If the specified user has been invited to the organization, this will cancel their invitation. The specified user will receive an email notification in both cases.
"
+ ]
},
{
"verb": "get",
@@ -24237,7 +24237,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -24300,30 +24300,30 @@
"subcategory": "outside-collaborators",
"subcategoryLabel": "Outside collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "When an organization member is converted to an outside collaborator, they'll only have access to the repositories that their current team membership allows. The user will no longer be a member of the organization. For more information, see \"Converting an organization member to an outside collaborator\".
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "User is getting converted asynchronously"
+ "description": "User is getting converted asynchronously
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "User was converted"
+ "description": "User was converted
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if user is the last owner of the organization or not a member of the organization"
+ "description": "Forbidden if user is the last owner of the organization or not a member of the organization
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "When an organization member is converted to an outside collaborator, they'll only have access to the repositories that their current team membership allows. The user will no longer be a member of the organization. For more information, see \"Converting an organization member to an outside collaborator\".
"
+ ]
},
{
"verb": "delete",
@@ -24389,12 +24389,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if user is a member of the organization",
+ "description": "Unprocessable Entity if user is a member of the organization
",
"payload": "{\n \"message\": \"You cannot specify an organization member to remove as an outside collaborator.\",\n \"documentation_url\": \"https://docs.github.com/enterprise-server@3.2/rest/reference/orgs#remove-outside-collaborator\"\n}\n
"
}
]
@@ -24512,7 +24512,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/admin/pre-receive-hooks/42\",\n \"allow_downstream_configuration\": true\n }\n]\n
"
}
]
@@ -24589,7 +24589,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/admin/pre-receive-hooks/42\",\n \"allow_downstream_configuration\": true\n}\n
"
}
]
@@ -24719,7 +24719,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"enabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\",\n \"allow_downstream_configuration\": false\n}\n
"
}
]
@@ -24796,7 +24796,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/admin/pre-receive-hooks/42\",\n \"allow_downstream_configuration\": true\n}\n
"
}
]
@@ -24896,13 +24896,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -25022,33 +25022,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -25127,7 +25127,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -25191,19 +25191,19 @@
"subcategoryLabel": "Members",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if user is a public member"
+ "description": "Response if user is a public member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if user is not a public member"
+ "description": "Not Found if user is not a public member
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -25263,20 +25263,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The user can publicize their own membership. (A user cannot publicize the membership for another user.)
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The user can publicize their own membership. (A user cannot publicize the membership for another user.)
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -25337,14 +25337,14 @@
"subcategoryLabel": "Members",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -25480,7 +25480,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -25920,18 +25920,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"organization\": null,\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -26008,13 +26008,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -26252,18 +26252,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -26330,13 +26330,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -26534,7 +26534,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
}
]
@@ -26596,15 +26596,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "To delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "To delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}.
"
+ ]
},
{
"verb": "get",
@@ -26723,7 +26723,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -26879,7 +26879,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -26965,7 +26965,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -27104,7 +27104,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 1,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Welcome to our first team post\",\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -27177,15 +27177,15 @@
"subcategory": "discussions",
"subcategoryLabel": "Discussions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Delete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Delete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}.
"
+ ]
},
{
"verb": "get",
@@ -27303,7 +27303,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -27428,7 +27428,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -27523,7 +27523,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -27656,7 +27656,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like pineapples?\",\n \"body_html\": \"<p>Do you like pineapples?</p>\",\n \"body_version\": \"e6907b24d9c93cc0c5024a7af5888116\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -27738,15 +27738,15 @@
"subcategory": "discussion-comments",
"subcategoryLabel": "Discussion comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}.
"
+ ]
},
{
"verb": "get",
@@ -27875,7 +27875,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -28025,13 +28025,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -28126,15 +28126,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion comment. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion comment. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -28254,7 +28254,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -28395,13 +28395,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -28487,15 +28487,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -28598,7 +28598,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -28683,7 +28683,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if user has no team membership"
+ "description": "if user has no team membership
"
}
]
},
@@ -28809,12 +28809,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team
"
}
]
},
@@ -28886,20 +28886,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/memberships/{username}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/memberships/{username}.
"
+ ]
},
{
"verb": "get",
@@ -28990,7 +28990,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n }\n]\n
"
}
]
@@ -29073,13 +29073,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if project is not managed by this team"
+ "description": "Not Found if project is not managed by this team
"
}
]
},
@@ -29204,12 +29204,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if the project is not owned by the organization",
+ "description": "Forbidden if the project is not owned by the organization
",
"payload": "{\n \"message\": \"Must have admin rights to Repository.\",\n \"documentation_url\": \"https://docs.github.com/enterprise-server@3.2/rest/reference/teams#add-or-update-team-project-permissions\"\n}\n
"
}
]
@@ -29280,15 +29280,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. This endpoint removes the project from the team, but does not delete the project.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/projects/{project_id}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. This endpoint removes the project from the team, but does not delete the project.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/projects/{project_id}.
"
+ ]
},
{
"verb": "get",
@@ -29373,7 +29373,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -29459,18 +29459,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Alternative response with repository permissions",
+ "description": "Alternative response with repository permissions
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"maintain\": false,\n \"push\": false,\n \"triage\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"triage\": false,\n \"push\": false,\n \"maintain\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if team has permission for the repository. This is the response when the repository media type hasn't been provded in the Accept header."
+ "description": "Response if team has permission for the repository. This is the response when the repository media type hasn't been provded in the Accept header.
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team does not have permission for the repository"
+ "description": "Not Found if team does not have permission for the repository
"
}
]
},
@@ -29579,14 +29579,14 @@
"categoryLabel": "Teams",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "To add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization. Note that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nNote: You can also specify a team by org_id and team_id using the route PUT /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
\nFor more information about the permission levels, see \"Repository permission levels for an organization\".
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "To add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization. Note that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nNote: You can also specify a team by org_id and team_id using the route PUT /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
\nFor more information about the permission levels, see \"Repository permission levels for an organization\".
",
"bodyParameters": [
{
"type": "string",
@@ -29682,15 +29682,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. This does not delete the repository, it just removes it from the team.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. This does not delete the repository, it just removes it from the team.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
"
+ ]
},
{
"verb": "get",
@@ -29775,7 +29775,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if child teams exist",
+ "description": "if child teams exist
",
"payload": "[\n {\n \"id\": 2,\n \"node_id\": \"MDQ6VGVhbTI=\",\n \"url\": \"https://api.github.com/teams/2\",\n \"name\": \"Original Roster\",\n \"slug\": \"original-roster\",\n \"description\": \"Started it all.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/2/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/2/repos\",\n \"parent\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n },\n \"html_url\": \"https://github.com/orgs/rails/teams/core\"\n }\n]\n
"
}
]
@@ -29843,28 +29843,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -29987,33 +29987,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -30075,34 +30075,34 @@
"subcategoryLabel": "Cards",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -30203,32 +30203,32 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Response"
+ "description": "Response
"
}
],
"bodyParameters": [
@@ -30318,28 +30318,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -30443,23 +30443,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -30521,29 +30521,29 @@
"subcategoryLabel": "Columns",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -30644,23 +30644,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -30839,33 +30839,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Response"
+ "description": "Response
"
}
]
},
@@ -30958,27 +30958,27 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -31054,23 +31054,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -31257,38 +31257,38 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if the authenticated user does not have access to the project"
+ "description": "Not Found if the authenticated user does not have access to the project
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -31345,40 +31345,40 @@
"category": "projects",
"categoryLabel": "Projects",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a project board. Returns a 404 Not Found status if projects are disabled.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Delete Success"
+ "description": "Delete Success
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a project board. Returns a 404 Not Found status if projects are disabled.
"
+ ]
},
{
"verb": "get",
@@ -31478,33 +31478,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -31603,39 +31603,39 @@
"subcategoryLabel": "Collaborators",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Adds a collaborator to an organization project and sets their permission level. You must be an organization owner or a project admin to add a collaborator.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Adds a collaborator to an organization project and sets their permission level. You must be an organization owner or a project admin to add a collaborator.
",
"bodyParameters": [
{
"description": "The permission to grant the collaborator.
",
@@ -31720,40 +31720,40 @@
"subcategory": "collaborators",
"subcategoryLabel": "Collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a collaborator from an organization project. You must be an organization owner or a project admin to remove a collaborator.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a collaborator from an organization project. You must be an organization owner or a project admin to remove a collaborator.
"
+ ]
},
{
"verb": "get",
@@ -31826,33 +31826,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -31938,23 +31938,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -32057,28 +32057,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -32125,18 +32125,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"resources\": {\n \"core\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1372700873,\n \"used\": 1\n },\n \"search\": {\n \"limit\": 30,\n \"remaining\": 18,\n \"reset\": 1372697452,\n \"used\": 12\n },\n \"graphql\": {\n \"limit\": 5000,\n \"remaining\": 4993,\n \"reset\": 1372700389,\n \"used\": 7\n },\n \"integration_manifest\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1551806725,\n \"used\": 1\n },\n \"code_scanning_upload\": {\n \"limit\": 500,\n \"remaining\": 499,\n \"reset\": 1551806725,\n \"used\": 1\n }\n },\n \"rate\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1372700873,\n \"used\": 1\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -32196,35 +32196,35 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Reactions API. We recommend migrating your existing code to use the new delete reactions endpoints. For more information, see this blog post.
\nOAuth access tokens require the write:discussion scope, when deleting a team discussion or team discussion comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Reactions API. We recommend migrating your existing code to use the new delete reactions endpoints. For more information, see this blog post.
\nOAuth access tokens require the write:discussion scope, when deleting a team discussion or team discussion comment.
"
+ ]
},
{
"verb": "get",
@@ -32311,17 +32311,17 @@
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -32778,28 +32778,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"language\": null,\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"push\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"organization\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"parent\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"source\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n}\n
"
},
{
"httpStatusCode": "307",
"httpStatusMessage": "Temporary Redirect",
- "description": "Temporary Redirect"
+ "description": "Temporary Redirect
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -33237,23 +33237,23 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "307",
"httpStatusMessage": "Temporary Redirect",
- "description": "Temporary Redirect"
+ "description": "Temporary Redirect
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "If an organization owner has configured the organization to prevent members from deleting organization-owned repositories, a member will get this response:",
+ "description": "If an organization owner has configured the organization to prevent members from deleting organization-owned repositories, a member will get this response:
",
"payload": "{\n \"message\": \"Organization members cannot delete repositories.\",\n \"documentation_url\": \"https://docs.github.com/enterprise-server@3.2/rest/reference/repos#delete-a-repository\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -33341,7 +33341,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"artifacts\": [\n {\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n },\n {\n \"id\": 13,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMw==\",\n \"name\": \"\",\n \"size_in_bytes\": 453,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -33420,7 +33420,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-01-21T14:59:22Z\",\n \"updated_at\": \"2020-01-21T14:59:22Z\"\n}\n
"
}
]
@@ -33493,15 +33493,15 @@
"subcategory": "artifacts",
"subcategoryLabel": "Artifacts",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes an artifact for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes an artifact for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -33580,15 +33580,15 @@
"subcategory": "artifacts",
"subcategoryLabel": "Artifacts",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download an archive for a repository. This URL expires after 1 minute. Look for Location: in\nthe response header to find the URL for the download. The :archive_format must be zip. Anyone with read access to\nthe repository can use this endpoint. If the repository is private you must use an access token with the repo scope.\nGitHub Apps must have the actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download an archive for a repository. This URL expires after 1 minute. Look for Location: in\nthe response header to find the URL for the download. The :archive_format must be zip. Anyone with read access to\nthe repository can use this endpoint. If the repository is private you must use an access token with the repo scope.\nGitHub Apps must have the actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -33664,7 +33664,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 399444496,\n \"run_id\": 29679449,\n \"run_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\",\n \"node_id\": \"MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\",\n \"head_sha\": \"f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/runs/399444496\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"started_at\": \"2020-01-20T17:42:40Z\",\n \"completed_at\": \"2020-01-20T17:44:39Z\",\n \"name\": \"build\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 1,\n \"started_at\": \"2020-01-20T09:42:40.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:41.000-08:00\"\n },\n {\n \"name\": \"Run actions/checkout@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 2,\n \"started_at\": \"2020-01-20T09:42:41.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Set up Ruby\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 3,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Run actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 4,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:48.000-08:00\"\n },\n {\n \"name\": \"Install Bundler\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 5,\n \"started_at\": \"2020-01-20T09:42:48.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:52.000-08:00\"\n },\n {\n \"name\": \"Install Gems\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 6,\n \"started_at\": \"2020-01-20T09:42:52.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:53.000-08:00\"\n },\n {\n \"name\": \"Run Tests\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 7,\n \"started_at\": \"2020-01-20T09:42:53.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:59.000-08:00\"\n },\n {\n \"name\": \"Deploy to Heroku\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 8,\n \"started_at\": \"2020-01-20T09:42:59.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Post actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 16,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Complete job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 17,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n }\n ],\n \"check_run_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\"\n}\n
"
}
]
@@ -33737,15 +33737,15 @@
"subcategory": "workflow-jobs",
"subcategoryLabel": "Workflow jobs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a plain text file of logs for a workflow job. This link expires after 1 minute. Look\nfor Location: in the response header to find the URL for the download. Anyone with read access to the repository can\nuse this endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must\nhave the actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a plain text file of logs for a workflow job. This link expires after 1 minute. Look\nfor Location: in the response header to find the URL for the download. Anyone with read access to the repository can\nuse this endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must\nhave the actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -33811,7 +33811,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled\": true,\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/repositories/42/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -33917,14 +33917,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for enabling GitHub Actions and allowed actions in the repository.
\nIf the repository belongs to an organization or enterprise that has set restrictive permissions at the organization or enterprise levels, such as allowed_actions to selected actions, then you cannot override them for the repository.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for enabling GitHub Actions and allowed actions in the repository.
\nIf the repository belongs to an organization or enterprise that has set restrictive permissions at the organization or enterprise levels, such as allowed_actions to selected actions, then you cannot override them for the repository.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -34015,7 +34015,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -34128,14 +34128,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in a repository. To use this endpoint, the repository permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for a repository.\"
\nIf the repository belongs to an organization or enterprise that has selected actions set at the organization or enterprise levels, then you cannot override any of the allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the repository must belong to an enterprise. If the repository does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in a repository. To use this endpoint, the repository permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for a repository.\"
\nIf the repository belongs to an organization or enterprise that has selected actions set at the organization or enterprise levels, then you cannot override any of the allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the repository must belong to an enterprise. If the repository does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -34244,7 +34244,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -34313,7 +34313,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"os\": \"osx\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-osx-x64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-osx-x64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"f1fa173889dc9036cd529417e652e1729e5a3f4d35ec0151806d7480fda6b89b\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-x64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-x64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"02d710fc9e0008e641274bb7da7fde61f7c9aa1cbb541a2990d3450cc88f4e98\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-arm-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIyYTEzZDRmZC01ZDhkLTRjNzgtYjg2MS0zYTMxZGQ3MmYzNjQiLCJzaWQiOiI0MzZiNTg3YS04ODMyLTRiMTMtOWM2Ny05OWRkMjA2ZTQzNmMiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MzE1NzEsImV4cCI6MTYxNzkzNTc3MX0.PMhU7-MOnZRDj5k5a4ieeFlQCmKPl2pQvpVRhGZq-9ByKF5s9G0rsnGBxDcolTYlbvEAmSSkeAEwF486F7P0kMVEb-GI14WbErqqMSyaPL81c3W7UHxMJLaSBnDs9ftHMv_IkJmRzaROS8q1ObzUW-ErlltxCdj2zF_5ruK9G2RR566AOAtiA3AHV6k7-FCY5--sDYJN_YXPgpwI0fPN1TM92fdPm93hJnoXuCJNpBYp1vl5W4gwGtU_Pa07ESdqqFN1YJJHUloedNhiIOczGfGVSapRc8vyGm9P_VCM_yKD8JI-MkOXl8JI5fCfhmjmKsw-vSAh9NW67RGvmehmpw\",\n \"sha256_checksum\": \"2f2bda21e2fd8fed6938b33182a293f6b1f74e4c5d09acd6d9a0fe3f979f5c85\"\n },\n {\n \"os\": \"win\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-win-x64-2.277.1.zip\",\n \"filename\": \"actions-runner-win-x64-2.277.1.zip\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"7215c75a462eeb6a839fa8ed298d79f620617d44d47d37c583114fc3f3b27b30\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-arm64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"a6aa6dd0ba217118ef2b4ea24e9e0a85b02b13c38052a5de0776d6ced3a79c64\"\n }\n]\n
"
}
]
@@ -34382,7 +34382,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"LLBF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-22T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -34451,7 +34451,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"AABF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-29T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -34530,7 +34530,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 23,\n \"name\": \"MBP\",\n \"os\": \"macos\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
}
]
@@ -34603,15 +34603,15 @@
"subcategory": "self-hosted-runners",
"subcategoryLabel": "Self hosted runners",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from a repository. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the repo\nscope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from a repository. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the repo\nscope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -34773,7 +34773,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"workflow_runs\": [\n {\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n }\n ]\n}\n
"
}
]
@@ -34863,7 +34863,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"check_suite_id\": 42,\n \"check_suite_node_id\": \"MDEwOkNoZWNrU3VpdGU0Mg==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n}\n
"
}
]
@@ -34936,15 +34936,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Delete a specific workflow run. Anyone with write access to the repository can use this endpoint. If the repository is\nprivate you must use an access token with the repo scope. GitHub Apps must have the actions:write permission to use\nthis endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Delete a specific workflow run. Anyone with write access to the repository can use this endpoint. If the repository is\nprivate you must use an access token with the repo scope. GitHub Apps must have the actions:write permission to use\nthis endpoint.
"
+ ]
},
{
"verb": "get",
@@ -35020,7 +35020,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"state\": \"approved\",\n \"comment\": \"Ship it!\",\n \"environments\": [\n {\n \"id\": 161088068,\n \"node_id\": \"MDExOkVudmlyb25tZW50MTYxMDg4MDY4\",\n \"name\": \"staging\",\n \"url\": \"https://api.github.com/repos/github/hello-world/environments/staging\",\n \"html_url\": \"https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\",\n \"created_at\": \"2020-11-23T22:00:40Z\",\n \"updated_at\": \"2020-11-23T22:00:40Z\"\n }\n ],\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
}
]
@@ -35119,7 +35119,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"artifacts\": [\n {\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n },\n {\n \"id\": 13,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMw==\",\n \"name\": \"\",\n \"size_in_bytes\": 453,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -35192,15 +35192,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Cancels a workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Cancels a workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -35311,7 +35311,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"jobs\": [\n {\n \"id\": 399444496,\n \"run_id\": 29679449,\n \"run_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\",\n \"node_id\": \"MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\",\n \"head_sha\": \"f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/runs/399444496\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"started_at\": \"2020-01-20T17:42:40Z\",\n \"completed_at\": \"2020-01-20T17:44:39Z\",\n \"name\": \"build\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 1,\n \"started_at\": \"2020-01-20T09:42:40.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:41.000-08:00\"\n },\n {\n \"name\": \"Run actions/checkout@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 2,\n \"started_at\": \"2020-01-20T09:42:41.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Set up Ruby\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 3,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Run actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 4,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:48.000-08:00\"\n },\n {\n \"name\": \"Install Bundler\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 5,\n \"started_at\": \"2020-01-20T09:42:48.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:52.000-08:00\"\n },\n {\n \"name\": \"Install Gems\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 6,\n \"started_at\": \"2020-01-20T09:42:52.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:53.000-08:00\"\n },\n {\n \"name\": \"Run Tests\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 7,\n \"started_at\": \"2020-01-20T09:42:53.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:59.000-08:00\"\n },\n {\n \"name\": \"Deploy to Heroku\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 8,\n \"started_at\": \"2020-01-20T09:42:59.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Post actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 16,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Complete job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 17,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n }\n ],\n \"check_run_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\"\n }\n ]\n}\n
"
}
]
@@ -35384,15 +35384,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download an archive of log files for a workflow run. This link expires after 1 minute. Look for\nLocation: in the response header to find the URL for the download. Anyone with read access to the repository can use\nthis endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must have\nthe actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download an archive of log files for a workflow run. This link expires after 1 minute. Look for\nLocation: in the response header to find the URL for the download. Anyone with read access to the repository can use\nthis endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must have\nthe actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -35462,15 +35462,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes all logs for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes all logs for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -35546,7 +35546,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"environment\": {\n \"id\": 161088068,\n \"node_id\": \"MDExOkVudmlyb25tZW50MTYxMDg4MDY4\",\n \"name\": \"staging\",\n \"url\": \"https://api.github.com/repos/github/hello-world/environments/staging\",\n \"html_url\": \"https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\"\n },\n \"wait_timer\": 30,\n \"wait_timer_started_at\": \"2020-11-23T22:00:40Z\",\n \"current_user_can_approve\": true,\n \"reviewers\": [\n {\n \"type\": \"User\",\n \"reviewer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"type\": \"Team\",\n \"reviewer\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n }\n ]\n }\n]\n
"
}
]
@@ -35726,7 +35726,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n }\n]\n
"
}
]
@@ -35801,15 +35801,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Re-runs your workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Re-runs your workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -35895,7 +35895,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"secrets\": [\n {\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n },\n {\n \"name\": \"GIST_ID\",\n \"created_at\": \"2020-01-10T10:59:22Z\",\n \"updated_at\": \"2020-01-11T11:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -35964,7 +35964,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -36043,7 +36043,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n}\n
"
}
]
@@ -36095,7 +36095,7 @@
}
],
"summary": "Create or update a repository secret",
- "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -36156,15 +36156,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -36255,15 +36255,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in a repository using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in a repository using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -36349,7 +36349,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"workflows\": [\n {\n \"id\": 161335,\n \"node_id\": \"MDg6V29ya2Zsb3cxNjEzMzU=\",\n \"name\": \"CI\",\n \"path\": \".github/workflows/blank.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/161335\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/161335\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/CI/badge.svg\"\n },\n {\n \"id\": 269289,\n \"node_id\": \"MDE4OldvcmtmbG93IFNlY29uZGFyeTI2OTI4OQ==\",\n \"name\": \"Linter\",\n \"path\": \".github/workflows/linter.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/269289\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/269289\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/Linter/badge.svg\"\n }\n ]\n}\n
"
}
]
@@ -36435,7 +36435,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 161335,\n \"node_id\": \"MDg6V29ya2Zsb3cxNjEzMzU=\",\n \"name\": \"CI\",\n \"path\": \".github/workflows/blank.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/161335\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/161335\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/CI/badge.svg\"\n}\n
"
}
]
@@ -36515,15 +36515,15 @@
"subcategory": "workflows",
"subcategoryLabel": "Workflows",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Disables a workflow and sets the state of the workflow to disabled_manually. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Disables a workflow and sets the state of the workflow to disabled_manually. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -36645,14 +36645,14 @@
"subcategoryLabel": "Workflows",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "You can use this endpoint to manually trigger a GitHub Actions workflow run. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must configure your GitHub Actions workflow to run when the workflow_dispatch webhook event occurs. The inputs are configured in the workflow file. For more information about how to configure the workflow_dispatch event in the workflow file, see \"Events that trigger workflows.\"
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint. For more information, see \"Creating a personal access token for the command line.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "You can use this endpoint to manually trigger a GitHub Actions workflow run. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must configure your GitHub Actions workflow to run when the workflow_dispatch webhook event occurs. The inputs are configured in the workflow file. For more information about how to configure the workflow_dispatch event in the workflow file, see \"Events that trigger workflows.\"
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint. For more information, see \"Creating a personal access token for the command line.\"
",
"bodyParameters": [
{
"type": "string",
@@ -36753,15 +36753,15 @@
"subcategory": "workflows",
"subcategoryLabel": "Workflows",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Enables a workflow and sets the state of the workflow to active. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Enables a workflow and sets the state of the workflow to active. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -36940,7 +36940,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"workflow_runs\": [\n {\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n }\n ]\n}\n
"
}
]
@@ -37029,13 +37029,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -37106,20 +37106,20 @@
"subcategory": "assignees",
"subcategoryLabel": "Assignees",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Checks if a user has permission to be assigned to an issue in this repository.
\nIf the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
\nOtherwise a 404 status code is returned.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "If the `assignee` can be assigned to issues in the repository, a `204` header with no content is returned."
+ "description": "If the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Otherwise a `404` status code is returned."
+ "description": "Otherwise a 404 status code is returned.
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Checks if a user has permission to be assigned to an issue in this repository.
\nIf the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
\nOtherwise a 404 status code is returned.
"
+ ]
},
{
"verb": "get",
@@ -37213,13 +37213,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"protected\": true,\n \"protection\": {\n \"required_status_checks\": {\n \"enforcement_level\": \"non_admins\",\n \"contexts\": [\n \"ci-test\",\n \"linter\"\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/octocat/hello-world/branches/master/protection\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -37291,29 +37291,29 @@
"categoryLabel": "Branches",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -37397,13 +37397,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection\",\n \"required_status_checks\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\",\n \"enforcement_level\": \"non_admins\"\n },\n \"enforce_admins\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n },\n \"required_pull_request_reviews\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n },\n \"restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"apps_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"apps\": [\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n ]\n },\n \"required_linear_history\": {\n \"enabled\": true\n },\n \"allow_force_pushes\": {\n \"enabled\": true\n },\n \"allow_deletions\": {\n \"enabled\": true\n },\n \"required_conversation_resolution\": {\n \"enabled\": true\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -38156,29 +38156,29 @@
"subcategoryLabel": "Branch protection",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nProtecting a branch requires admin or owner permissions to the repository.
\nNote: Passing new arrays of users and teams replaces their previous values.
\nNote: The list of users, apps, and teams in total is limited to 100 items.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nProtecting a branch requires admin or owner permissions to the repository.
\nNote: Passing new arrays of users and teams replaces their previous values.
\nNote: The list of users, apps, and teams in total is limited to 100 items.
",
"bodyParameters": [
{
"type": "object or nullable",
@@ -38860,20 +38860,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -38950,7 +38950,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n}\n
"
}
]
@@ -39030,7 +39030,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n}\n
"
}
]
@@ -39104,20 +39104,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nRemoving admin enforcement requires admin or owner permissions to the repository and branch protection to be enabled.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nRemoving admin enforcement requires admin or owner permissions to the repository and branch protection to be enabled.
"
+ ]
},
{
"verb": "get",
@@ -39201,7 +39201,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n}\n
"
}
]
@@ -39415,13 +39415,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -39590,20 +39590,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -39687,13 +39687,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures\",\n \"enabled\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -39779,13 +39779,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures\",\n \"enabled\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -39865,20 +39865,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nWhen authenticated with admin or owner permissions to the repository, you can use this endpoint to disable required signed commits on a branch. You must enable branch protection to require signed commits.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nWhen authenticated with admin or owner permissions to the repository, you can use this endpoint to disable required signed commits on a branch. You must enable branch protection to require signed commits.
"
+ ]
},
{
"verb": "get",
@@ -39955,13 +39955,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"strict\": true,\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -40104,18 +40104,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"strict\": true,\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40188,15 +40188,15 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -40273,13 +40273,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -40416,23 +40416,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\",\n \"continuous-integration/jenkins\"\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40569,18 +40569,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40716,18 +40716,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40806,13 +40806,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"apps_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"apps\": [\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -40885,15 +40885,15 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nDisables the ability to restrict who can push to this branch.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nDisables the ability to restrict who can push to this branch.
"
+ ]
},
{
"verb": "get",
@@ -40970,13 +40970,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -41112,13 +41112,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -41254,13 +41254,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -41395,13 +41395,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -41480,13 +41480,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -41623,13 +41623,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -41766,13 +41766,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -41908,13 +41908,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -41993,13 +41993,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -42135,13 +42135,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -42277,13 +42277,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -42418,13 +42418,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -42539,23 +42539,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"node_id\": \"MDY6Q29tbWl0N2ZkMWE2MGIwMWY5MWIzMTRmNTk5NTVhNGU0ZDRlODBkOGVkZjExZA==\",\n \"commit\": {\n \"author\": {\n \"name\": \"The Octocat\",\n \"date\": \"2012-03-06T15:06:50-08:00\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"tree\": {\n \"sha\": \"b4eecafa9be2f2006ce1b709d6857b07069b4608\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/b4eecafa9be2f2006ce1b709d6857b07069b4608\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"date\": \"2012-03-06T15:06:50-08:00\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n },\n \"comment_count\": 0\n },\n \"author\": {\n \"gravatar_id\": \"\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/7ad39074b0584bc555d0417ae3e7d974?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"id\": 583231,\n \"login\": \"octocat\",\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"parents\": [\n {\n \"sha\": \"553c2077f0edc3d5dc5d17262f6aa498e69d6f8e\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/553c2077f0edc3d5dc5d17262f6aa498e69d6f8e\"\n },\n {\n \"sha\": \"762941318ee16e59dabbacb1b4049eec22f0d303\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/762941318ee16e59dabbacb1b4049eec22f0d303\"\n }\n ],\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"committer\": {\n \"gravatar_id\": \"\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/7ad39074b0584bc555d0417ae3e7d974?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"id\": 583231,\n \"login\": \"octocat\",\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\"\n },\n \"_links\": {\n \"html\": \"https://github.com/octocat/Hello-World/tree/master\",\n \"self\": \"https://api.github.com/repos/octocat/Hello-World/branches/master\"\n },\n \"protected\": true,\n \"protection\": {\n \"required_status_checks\": {\n \"enforcement_level\": \"non_admins\",\n \"contexts\": [\n \"ci-test\",\n \"linter\"\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/octocat/hello-world/branches/master/protection\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -44713,7 +44713,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n}\n
"
}
]
@@ -45807,7 +45807,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n}\n
"
}
],
@@ -46847,7 +46847,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"path\": \"README.md\",\n \"start_line\": 2,\n \"end_line\": 2,\n \"start_column\": 5,\n \"end_column\": 10,\n \"annotation_level\": \"warning\",\n \"title\": \"Spell Checker\",\n \"message\": \"Check your spelling for 'banaas'.\",\n \"raw_details\": \"Do you mean 'bananas' or 'banana'?\",\n \"blob_href\": \"https://api.github.com/repos/github/rest-api-description/git/blobs/abc\"\n }\n]\n
"
}
]
@@ -46954,13 +46954,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "when the suite already existed",
+ "description": "when the suite already existed
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when the suite was created",
+ "description": "Response when the suite was created
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
}
]
@@ -47113,7 +47113,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"preferences\": {\n \"auto_trigger_checks\": [\n {\n \"app_id\": 2,\n \"setting\": true\n },\n {\n \"app_id\": 4,\n \"setting\": false\n }\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n }\n}\n
"
}
],
@@ -47258,7 +47258,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
}
]
@@ -47397,7 +47397,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_runs\": [\n {\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -47470,15 +47470,15 @@
"subcategory": "suites",
"subcategoryLabel": "Suites",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check suite, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check suite, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
"
+ ]
},
{
"verb": "get",
@@ -47613,23 +47613,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"number\": 4,\n \"created_at\": \"2020-02-13T12:29:18Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/4\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/4\",\n \"state\": \"open\",\n \"dismissed_by\": null,\n \"dismissed_at\": null,\n \"dismissed_reason\": null,\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"description\": \"Arbitrary file write during zip extraction\",\n \"name\": \"js/zipslip\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"open\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/4/instances\"\n },\n {\n \"number\": 3,\n \"created_at\": \"2020-02-13T12:29:18Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/3\",\n \"state\": \"dismissed\",\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-02-14T12:29:18Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"description\": \"Arbitrary file write during zip extraction\",\n \"name\": \"js/zipslip\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"open\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"lib/ab12-gen.js\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": []\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -47707,23 +47707,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-06-19T11:21:34Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/42\",\n \"state\": \"dismissed\",\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 54933897,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-02-14T12:29:18Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"security_severity_level\": \"high\",\n \"description\": \"Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\",\n \"name\": \"js/zipslip\",\n \"full_description\": \"Extracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten.\",\n \"tags\": [\n \"security\",\n \"external/cwe/cwe-022\"\n ],\n \"help\": \"# Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\\\\nExtracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten ...\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"dismissed\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -47879,23 +47879,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-08-25T21:28:36Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/42\",\n \"state\": \"dismissed\",\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-09-02T22:34:56Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"security_severity_level\": \"high\",\n \"description\": \"Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\",\n \"name\": \"js/zipslip\",\n \"full_description\": \"Extracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten.\",\n \"tags\": [\n \"security\",\n \"external/cwe/cwe-022\"\n ],\n \"help\": \"# Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\\\\nExtracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten ...\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"dismissed\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -48004,23 +48004,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"\",\n \"state\": \"open\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"lib/ab12-gen.js\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"library\"\n ]\n },\n {\n \"ref\": \"refs/pull/3740/merge\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"\",\n \"category\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"state\": \"fixed\",\n \"commit_sha\": \"b09da05606e27f463a2b49287684b4ae777092f2\",\n \"message\": {\n \"text\": \"This suffix check is missing a length comparison to correctly handle lastIndexOf returning -1.\"\n },\n \"location\": {\n \"path\": \"app/script.js\",\n \"start_line\": 2,\n \"end_line\": 2,\n \"start_column\": 10,\n \"end_column\": 50\n },\n \"classifications\": [\n \"source\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -48151,23 +48151,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/main\",\n \"commit_sha\": \"d99612c3e1f2970085cfbaeadf8f010ef69bad83\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:analyze\",\n \"environment\": \"{\\\"language\\\":\\\"python\\\"}\",\n \"error\": \"\",\n \"category\": \".github/workflows/codeql-analysis.yml:analyze/language:python\",\n \"created_at\": \"2020-08-27T15:05:21Z\",\n \"results_count\": 17,\n \"rules_count\": 49,\n \"id\": 201,\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/201\",\n \"sarif_id\": \"6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53\",\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"deletable\": true,\n \"warning\": \"\"\n },\n {\n \"ref\": \"refs/heads/my-branch\",\n \"commit_sha\": \"c8cff6510d4d084fb1b4aa13b64b97ca12b07321\",\n \"analysis_key\": \".github/workflows/shiftleft.yml:build\",\n \"environment\": \"{}\",\n \"error\": \"\",\n \"category\": \".github/workflows/shiftleft.yml:build/\",\n \"created_at\": \"2020-08-31T22:46:44Z\",\n \"results_count\": 17,\n \"rules_count\": 32,\n \"id\": 200,\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/200\",\n \"sarif_id\": \"8981cd8e-b078-4ac3-a3be-1dad7dbd0b582\",\n \"tool\": {\n \"name\": \"Python Security Analysis\",\n \"guid\": null,\n \"version\": \"1.2.0\"\n },\n \"deletable\": true,\n \"warning\": \"\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -48248,17 +48248,17 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -48350,22 +48350,22 @@
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -48575,27 +48575,27 @@
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request if the sarif field is invalid"
+ "description": "Bad Request if the sarif field is invalid
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "413",
"httpStatusMessage": "Payload Too Large",
- "description": "Payload Too Large if the sarif field is too large"
+ "description": "Payload Too Large if the sarif field is too large
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -48676,17 +48676,17 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if the sarif id does not match any upload"
+ "description": "Not Found if the sarif id does not match any upload
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -48788,13 +48788,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"permissions\": {\n \"pull\": true,\n \"push\": true,\n \"admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -48863,20 +48863,20 @@
"category": "collaborators",
"categoryLabel": "Collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "For organization-owned repositories, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners.
\nTeam members will include the members of child teams.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if user is a collaborator"
+ "description": "Response if user is a collaborator
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if user is not a collaborator"
+ "description": "Not Found if user is not a collaborator
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "For organization-owned repositories, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners.
\nTeam members will include the members of child teams.
"
+ ]
},
{
"verb": "put",
@@ -49016,23 +49016,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when a new invitation is created",
+ "description": "Response when a new invitation is created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\"\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when person is already a collaborator"
+ "description": "Response when person is already a collaborator
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -49102,14 +49102,14 @@
"categoryLabel": "Collaborators",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -49182,13 +49182,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if user has admin permissions",
+ "description": "if user has admin permissions
",
"payload": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -49283,7 +49283,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -49369,13 +49369,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -49491,13 +49491,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Nice change\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -49570,19 +49570,19 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -49702,13 +49702,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -49848,24 +49848,24 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -49950,15 +49950,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a commit comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a commit comment.
"
+ ]
},
{
"verb": "get",
@@ -50094,28 +50094,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -50199,13 +50199,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"branch_5\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"protected\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -50311,7 +50311,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -50487,18 +50487,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -50602,7 +50602,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false\n }\n]\n
"
}
]
@@ -50700,23 +50700,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ],\n \"stats\": {\n \"additions\": 104,\n \"deletions\": 4,\n \"total\": 108\n },\n \"files\": [\n {\n \"filename\": \"file1.txt\",\n \"additions\": 10,\n \"deletions\": 2,\n \"changes\": 12,\n \"status\": \"modified\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"patch\": \"@@ -29,7 +29,7 @@\\n.....\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -50864,7 +50864,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_runs\": [\n {\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -50985,7 +50985,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_suites\": [\n {\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n }\n ]\n}\n
"
}
]
@@ -51085,13 +51085,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"state\": \"success\",\n \"statuses\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\"\n },\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"id\": 2,\n \"node_id\": \"MDY6U3RhdHVzMg==\",\n \"state\": \"success\",\n \"description\": \"Testing has completed successfully\",\n \"target_url\": \"https://ci.example.com/2000/output\",\n \"context\": \"security/brakeman\",\n \"created_at\": \"2012-08-20T01:19:13Z\",\n \"updated_at\": \"2012-08-20T01:19:13Z\"\n }\n ],\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"total_count\": 2,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e/status\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -51190,13 +51190,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
}
]
},
@@ -51292,18 +51292,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/compare/master...topic\",\n \"html_url\": \"https://github.com/octocat/Hello-World/compare/master...topic\",\n \"permalink_url\": \"https://github.com/octocat/Hello-World/compare/octocat:bbcd538c8e72b8c175046e27cc8f907076331401...octocat:0328041d1152db8ae77652d1618a02e57f745f17\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/compare/master...topic.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/compare/master...topic.patch\",\n \"base_commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n },\n \"merge_base_commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n },\n \"status\": \"behind\",\n \"ahead_by\": 1,\n \"behind_by\": 2,\n \"total_commits\": 1,\n \"commits\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n ],\n \"files\": [\n {\n \"sha\": \"bbcd538c8e72b8c175046e27cc8f907076331401\",\n \"filename\": \"file1.txt\",\n \"status\": \"added\",\n \"additions\": 103,\n \"deletions\": 21,\n \"changes\": 124,\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/file1.txt?ref=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"patch\": \"@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -51452,38 +51452,38 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 101,\n \"title\": \"[A-1234] Error found in core/models.py file'\",\n \"body\": \"You have used an email that already exists for the user_email_uniq field.\\n ## DETAILS:\\n\\nThe (email)=(Octocat@github.com) already exists.\\n\\n The error was found in core/models.py in get_or_create_user at line 62.\\n\\n self.save()\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -51596,17 +51596,17 @@
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Found"
+ "description": "Found
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -51916,29 +51916,29 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": {\n \"name\": \"hello.txt\",\n \"path\": \"notes/hello.txt\",\n \"sha\": \"a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"size\": 9,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\",\n \"git_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"download_url\": \"https://raw.githubusercontent.com/octocat/HelloWorld/master/notes/hello.txt\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"git\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"html\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\"\n }\n },\n \"commit\": {\n \"sha\": \"18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"node_id\": \"MDY6Q29tbWl0MThhNDNjZDhlMWUzYTc5Yzc4NmUzZDgwOGE3M2QyM2I2ZDIxMmIxNg==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/9a21f8e2018f42ffcf369b24d2cd20bc25c9e66f\",\n \"sha\": \"9a21f8e2018f42ffcf369b24d2cd20bc25c9e66f\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/da5a433788da5c255edad7979b328b67d79f53f6\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/da5a433788da5c255edad7979b328b67d79f53f6\",\n \"sha\": \"da5a433788da5c255edad7979b328b67d79f53f6\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": {\n \"name\": \"hello.txt\",\n \"path\": \"notes/hello.txt\",\n \"sha\": \"95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"size\": 9,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\",\n \"git_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"download_url\": \"https://raw.githubusercontent.com/octocat/HelloWorld/master/notes/hello.txt\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"git\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"html\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\"\n }\n },\n \"commit\": {\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -52370,28 +52370,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": null,\n \"commit\": {\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
],
"bodyParameters": [
@@ -52626,23 +52626,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if repository contains content",
+ "description": "if repository contains content
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"contributions\": 32\n }\n]\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if repository is empty"
+ "description": "Response if repository is empty
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -52780,7 +52780,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n }\n]\n
"
}
]
@@ -52987,30 +52987,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Deployments offer a few configurable parameters with certain defaults.
\nThe ref parameter can be any named branch, tag, or SHA. At GitHub Enterprise Server we often deploy branches and verify them\nbefore we merge a pull request.
\nThe environment parameter allows deployments to be issued to different runtime environments. Teams often have\nmultiple environments for verifying their applications, such as production, staging, and qa. This parameter\nmakes it easier to track which environments have requested deployments. The default environment is production.
\nThe auto_merge parameter is used to ensure that the requested ref is not behind the repository's default branch. If\nthe ref is behind the default branch for the repository, we will attempt to merge it for you. If the merge succeeds,\nthe API will return a successful merge commit. If merge conflicts prevent the merge from succeeding, the API will\nreturn a failure response.
\nBy default, commit statuses for every submitted context must be in a success\nstate. The required_contexts parameter allows you to specify a subset of contexts that must be success, or to\nspecify contexts that have not yet been submitted. You are not required to use commit statuses to deploy. If you do\nnot require any contexts or create any commit statuses, the deployment will always succeed.
\nThe payload parameter is available for any extra information that a deployment system might need. It is a JSON text\nfield that will be passed on when a deployment event is dispatched.
\nThe task parameter is used by the deployment system to allow different execution paths. In the web world this might\nbe deploy:migrations to run schema changes on the system. In the compiled world this could be a flag to compile an\napplication with debugging enabled.
\nUsers with repo or repo_deployment scopes can create a deployment for a given ref.
\nMerged branch response
\nYou will see this response when GitHub automatically merges the base branch into the topic branch instead of creating\na deployment. This auto-merge happens when:
\n\n- Auto-merge option is enabled in the repository
\n- Topic branch does not include the latest changes on the base branch, which is
master in the response example \n- There are no merge conflicts
\n
\nIf there are no new commits in the base branch, a new request to create a deployment should give a successful\nresponse.
\nMerge conflict response
\nThis error happens when the auto_merge option is enabled and when the default branch (in this case master), can't\nbe merged into the branch that's being deployed (in this case topic-branch), due to merge conflicts.
\nFailed commit status checks
\nThis error happens when the required_contexts parameter indicates that one or more contexts need to have a success\nstatus for the commit to be deployed, but one or more of the required contexts do not have a state of success.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Simple example",
- "payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
- },
- {
- "httpStatusCode": "202",
- "httpStatusMessage": "Accepted",
- "description": "Merged branch response",
- "payload": "{\n \"message\": \"Auto-merged master into topic-branch on deployment.\"\n}\n
"
- },
- {
- "httpStatusCode": "409",
- "httpStatusMessage": "Conflict",
- "description": "Conflict when there is a merge conflict or the commit's status checks failed"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -53111,6 +53087,30 @@
"rawDescription": "Specifies if the given environment is one that end-users directly interact with. Default: `true` when `environment` is `production` and `false` otherwise. \n**Note:** This parameter requires you to use the [`application/vnd.github.ant-man-preview+json`](https://docs.github.com/enterprise-server@3.2/rest/overview/api-previews#enhanced-deployments) custom media type.",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Simple example",
+ "payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
+ },
+ {
+ "httpStatusCode": "202",
+ "httpStatusMessage": "Accepted",
+ "description": "Merged branch response
",
+ "payload": "{\n \"message\": \"Auto-merged master into topic-branch on deployment.\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "409",
+ "httpStatusMessage": "Conflict",
+ "description": "Conflict when there is a merge conflict or the commit's status checks failed
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -53197,13 +53197,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -53273,25 +53273,25 @@
"category": "deployments",
"categoryLabel": "Deployments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "To ensure there can always be an active deployment, you can only delete an inactive deployment. Anyone with repo or repo_deployment scopes can delete an inactive deployment.
\nTo set a deployment as inactive, you must:
\n\n- Create a new deployment that is active so that the system has a record of the current state, then delete the previously active deployment.
\n- Mark the active deployment as inactive by adding any non-successful deployment status.
\n
\nFor more information, see \"Create a deployment\" and \"Create a deployment status.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "To ensure there can always be an active deployment, you can only delete an inactive deployment. Anyone with repo or repo_deployment scopes can delete an inactive deployment.
\nTo set a deployment as inactive, you must:
\n\n- Create a new deployment that is active so that the system has a record of the current state, then delete the previously active deployment.
\n- Mark the active deployment as inactive by adding any non-successful deployment status.
\n
\nFor more information, see \"Create a deployment\" and \"Create a deployment status.\"
"
+ ]
},
{
"verb": "get",
@@ -53399,13 +53399,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -53680,13 +53680,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -53785,13 +53785,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -53896,19 +53896,19 @@
"categoryLabel": "Repos",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "You can use this endpoint to trigger a webhook event called repository_dispatch when you want activity that happens outside of GitHub Enterprise Server to trigger a GitHub Actions workflow or GitHub App webhook. You must configure your GitHub Actions workflow or GitHub App to run when the repository_dispatch event occurs. For an example repository_dispatch webhook payload, see \"RepositoryDispatchEvent.\"
\nThe client_payload parameter is available for any extra information that your workflow might need. This parameter is a JSON payload that will be passed on when the webhook event is dispatched. For example, the client_payload can include a message that a user would like to send using a GitHub Actions workflow. Or the client_payload can be used as a test to debug your workflow.
\nThis endpoint requires write access to the repository by providing either:
\n\nThis input example shows how you can use the client_payload as a test to debug your workflow.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "You can use this endpoint to trigger a webhook event called repository_dispatch when you want activity that happens outside of GitHub Enterprise Server to trigger a GitHub Actions workflow or GitHub App webhook. You must configure your GitHub Actions workflow or GitHub App to run when the repository_dispatch event occurs. For an example repository_dispatch webhook payload, see \"RepositoryDispatchEvent.\"
\nThe client_payload parameter is available for any extra information that your workflow might need. This parameter is a JSON payload that will be passed on when the webhook event is dispatched. For example, the client_payload can include a message that a user would like to send using a GitHub Actions workflow. Or the client_payload can be used as a test to debug your workflow.
\nThis endpoint requires write access to the repository by providing either:
\n\nThis input example shows how you can use the client_payload as a test to debug your workflow.
",
"bodyParameters": [
{
"type": "string",
@@ -53998,7 +53998,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"environments\": [\n {\n \"id\": 161088068,\n \"node_id\": \"MDExOkVudmlyb25tZW50MTYxMDg4MDY4\",\n \"name\": \"staging\",\n \"url\": \"https://api.github.com/repos/github/hello-world/environments/staging\",\n \"html_url\": \"https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\",\n \"created_at\": \"2020-11-23T22:00:40Z\",\n \"updated_at\": \"2020-11-23T22:00:40Z\",\n \"protection_rules\": [\n {\n \"id\": 3736,\n \"node_id\": \"MDQ6R2F0ZTM3MzY=\",\n \"type\": \"wait_timer\",\n \"wait_timer\": 30\n },\n {\n \"id\": 3755,\n \"node_id\": \"MDQ6R2F0ZTM3NTU=\",\n \"type\": \"required_reviewers\",\n \"reviewers\": [\n {\n \"type\": \"User\",\n \"reviewer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"type\": \"Team\",\n \"reviewer\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n }\n ]\n },\n {\n \"id\": 3756,\n \"node_id\": \"MDQ6R2F0ZTM3NTY=\",\n \"type\": \"branch_policy\"\n }\n ],\n \"deployment_branch_policy\": {\n \"protected_branches\": false,\n \"custom_branch_policies\": true\n }\n }\n ]\n}\n
"
}
]
@@ -54077,7 +54077,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 161088068,\n \"node_id\": \"MDExOkVudmlyb25tZW50MTYxMDg4MDY4\",\n \"name\": \"staging\",\n \"url\": \"https://api.github.com/repos/github/hello-world/environments/staging\",\n \"html_url\": \"https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\",\n \"created_at\": \"2020-11-23T22:00:40Z\",\n \"updated_at\": \"2020-11-23T22:00:40Z\",\n \"protection_rules\": [\n {\n \"id\": 3736,\n \"node_id\": \"MDQ6R2F0ZTM3MzY=\",\n \"type\": \"wait_timer\",\n \"wait_timer\": 30\n },\n {\n \"id\": 3755,\n \"node_id\": \"MDQ6R2F0ZTM3NTU=\",\n \"type\": \"required_reviewers\",\n \"reviewers\": [\n {\n \"type\": \"User\",\n \"reviewer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"type\": \"Team\",\n \"reviewer\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n }\n ]\n },\n {\n \"id\": 3756,\n \"node_id\": \"MDQ6R2F0ZTM3NTY=\",\n \"type\": \"branch_policy\"\n }\n ],\n \"deployment_branch_policy\": {\n \"protected_branches\": false,\n \"custom_branch_policies\": true\n }\n}\n
"
}
]
@@ -54311,13 +54311,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 161088068,\n \"node_id\": \"MDExOkVudmlyb25tZW50MTYxMDg4MDY4\",\n \"name\": \"staging\",\n \"url\": \"https://api.github.com/repos/github/hello-world/environments/staging\",\n \"html_url\": \"https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\",\n \"created_at\": \"2020-11-23T22:00:40Z\",\n \"updated_at\": \"2020-11-23T22:00:40Z\",\n \"protection_rules\": [\n {\n \"id\": 3736,\n \"node_id\": \"MDQ6R2F0ZTM3MzY=\",\n \"type\": \"wait_timer\",\n \"wait_timer\": 30\n },\n {\n \"id\": 3755,\n \"node_id\": \"MDQ6R2F0ZTM3NTU=\",\n \"type\": \"required_reviewers\",\n \"reviewers\": [\n {\n \"type\": \"User\",\n \"reviewer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"type\": \"Team\",\n \"reviewer\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n }\n ]\n },\n {\n \"id\": 3756,\n \"node_id\": \"MDQ6R2F0ZTM3NTY=\",\n \"type\": \"branch_policy\"\n }\n ],\n \"deployment_branch_policy\": {\n \"protected_branches\": false,\n \"custom_branch_policies\": true\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` are set to the same value"
+ "description": "Validation error when the environment name is invalid or when protected_branches and custom_branch_policies in deployment_branch_policy are set to the same value
"
}
],
"bodyParameters": [
@@ -54532,15 +54532,15 @@
"subcategory": "environments",
"subcategoryLabel": "Environments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "You must authenticate using an access token with the repo scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Default response"
+ "description": "Default response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "You must authenticate using an access token with the repo scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -54621,14 +54621,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -54731,13 +54731,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
}
]
},
@@ -54838,28 +54838,28 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"language\": null,\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"push\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"organization\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"parent\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"source\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -54986,28 +54986,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/git/blobs/3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"sha\": \"3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -55084,23 +55084,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": \"Q29udGVudCBvZiB0aGUgYmxvYg==\",\n \"encoding\": \"base64\",\n \"url\": \"https://api.github.com/repos/octocat/example/git/blobs/3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"sha\": \"3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"size\": 19,\n \"node_id\": \"Q29udGVudCBvZiB0aGUgYmxvYg==\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -55390,18 +55390,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/827efc6d56897b048c772eb4087f854f46256132\",\n \"sha\": \"827efc6d56897b048c772eb4087f854f46256132\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7d1b31e74ee336d15cbd21741bc88a537ed063a0\",\n \"sha\": \"7d1b31e74ee336d15cbd21741bc88a537ed063a0\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7d1b31e74ee336d15cbd21741bc88a537ed063a0\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n },\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -55675,13 +55675,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"added readme, because im a good github citizen\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -55780,7 +55780,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/feature-a\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlLWE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/feature-a\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n },\n {\n \"ref\": \"refs/heads/feature-b\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlLWI=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/feature-b\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac\"\n }\n }\n]\n
"
}
]
@@ -55860,13 +55860,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -56010,13 +56010,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -56154,13 +56154,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -56234,19 +56234,19 @@
"subcategoryLabel": "Refs",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -56461,13 +56461,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"node_id\": \"MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw==\",\n \"tag\": \"v0.0.1\",\n \"sha\": \"940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"message\": \"initial version\",\n \"tagger\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\",\n \"date\": \"2014-11-07T22:01:45Z\"\n },\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\"\n },\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -56666,13 +56666,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"node_id\": \"MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw==\",\n \"tag\": \"v0.0.1\",\n \"sha\": \"940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"message\": \"initial version\",\n \"tagger\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\",\n \"date\": \"2014-11-07T22:01:45Z\"\n },\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\"\n },\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -56913,23 +56913,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"cd8274d15fa3ae2ab983129fb037999f264ba9a7\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/trees/cd8274d15fa3ae2ab983129fb037999f264ba9a7\",\n \"tree\": [\n {\n \"path\": \"file.rb\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"size\": 132,\n \"sha\": \"7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b\"\n }\n ],\n \"truncated\": true\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -57178,12 +57178,12 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -57271,13 +57271,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -57557,23 +57557,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -57837,13 +57837,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -58141,18 +58141,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -58429,19 +58429,19 @@
"subcategoryLabel": "Repos",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -58516,7 +58516,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -58657,14 +58657,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for a repository. To update more information about the webhook, including the active state and events, use \"Update a repository webhook.\"
\nAccess tokens must have the write:repo_hook or repo scope, and GitHub Apps must have the repository_hooks:write permission.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -58714,6 +58706,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -58809,18 +58809,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n },\n {\n \"id\": 123456789,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-04T00:57:16Z\",\n \"redelivery\": true,\n \"duration\": 0.28,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -58906,18 +58906,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456,\n \"url\": \"https://www.example.com\",\n \"request\": {\n \"headers\": {\n \"X-GitHub-Delivery\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"X-Hub-Signature-256\": \"sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"Accept\": \"*/*\",\n \"X-GitHub-Hook-ID\": \"42\",\n \"User-Agent\": \"GitHub-Hookshot/b8c71d8\",\n \"X-GitHub-Event\": \"issues\",\n \"X-GitHub-Hook-Installation-Target-ID\": \"123\",\n \"X-GitHub-Hook-Installation-Target-Type\": \"repository\",\n \"content-type\": \"application/json\",\n \"X-Hub-Signature\": \"sha1=a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\"\n },\n \"payload\": {\n \"action\": \"opened\",\n \"issue\": {\n \"body\": \"foo\"\n },\n \"repository\": {\n \"id\": 123\n }\n }\n },\n \"response\": {\n \"headers\": {\n \"Content-Type\": \"text/html;charset=utf-8\"\n },\n \"payload\": \"ok\"\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -58997,25 +58997,25 @@
"subcategory": "repo-deliveries",
"subcategoryLabel": "Repo deliveries",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Redeliver a webhook delivery for a webhook configured in a repository.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Redeliver a webhook delivery for a webhook configured in a repository.
"
+ ]
},
{
"verb": "post",
@@ -59084,20 +59084,20 @@
"subcategory": "repos",
"subcategoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the hook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the hook.
"
+ ]
},
{
"verb": "post",
@@ -59166,20 +59166,20 @@
"subcategory": "repos",
"subcategoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook is not subscribed to push events, the server will respond with 204 but no test POST will be generated.
\nNote: Previously /repos/:owner/:repo/hooks/:hook_id/test
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook is not subscribed to push events, the server will respond with 204 but no test POST will be generated.
\nNote: Previously /repos/:owner/:repo/hooks/:hook_id/test
"
+ ]
},
{
"verb": "get",
@@ -59243,18 +59243,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -59342,7 +59342,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
}
]
@@ -59467,7 +59467,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"expired\": false,\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\"\n}\n
"
}
]
@@ -59541,14 +59541,14 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -59751,23 +59751,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -59808,7 +59808,7 @@
}
],
"summary": "Create an issue",
- "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.2/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.2/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.2/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.2/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.2/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -59954,40 +59954,7 @@
"categoryLabel": "Issues",
"contentType": "application/json",
"notes": [],
- "descriptionHTML": "Any user with pull access to a repository can create an issue. If issues are disabled in the repository, the API returns a 410 Gone status.
\nThis endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "410",
- "httpStatusMessage": "Gone",
- "description": "Gone"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- },
- {
- "httpStatusCode": "503",
- "httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
- }
- ],
+ "descriptionHTML": "Any user with pull access to a repository can create an issue. If issues are disabled in the repository, the API returns a 410 Gone status.
\nThis endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
"bodyParameters": [
{
"oneOf": [
@@ -60088,6 +60055,39 @@
"rawDescription": "Logins for Users to assign to this issue. _NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise._",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "410",
+ "httpStatusMessage": "Gone",
+ "description": "Gone
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ },
+ {
+ "httpStatusCode": "503",
+ "httpStatusMessage": "Service Unavailable",
+ "description": "Service unavailable
"
+ }
]
},
{
@@ -60221,18 +60221,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -60322,13 +60322,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -60444,13 +60444,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -60523,14 +60523,14 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -60650,13 +60650,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -60796,19 +60796,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -60893,15 +60893,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE delete /repositories/:repository_id/issues/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to an issue comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE delete /repositories/:repository_id/issues/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to an issue comment.
"
+ ]
},
{
"verb": "get",
@@ -60994,13 +60994,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"issue\": {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -61084,23 +61084,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"issue\": {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"performed_via_github_app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -61182,28 +61182,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -61413,44 +61413,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Issue owners and users with push access can edit an issue.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
- },
- {
- "httpStatusCode": "301",
- "httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "410",
- "httpStatusMessage": "Gone",
- "description": "Gone"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- },
- {
- "httpStatusCode": "503",
- "httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
- }
- ],
"bodyParameters": [
{
"oneOf": [
@@ -61566,6 +61528,44 @@
"rawDescription": "Logins for Users to assign to this issue. Pass one or more user logins to _replace_ the set of assignees on this Issue. Send an empty array (`[]`) to clear all assignees from the Issue. _NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise._",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "301",
+ "httpStatusMessage": "Moved Permanently",
+ "description": "Moved permanently
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "410",
+ "httpStatusMessage": "Gone",
+ "description": "Gone
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ },
+ {
+ "httpStatusCode": "503",
+ "httpStatusMessage": "Service Unavailable",
+ "description": "Service unavailable
"
+ }
]
},
{
@@ -61686,7 +61686,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
}
]
@@ -61808,7 +61808,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
}
]
@@ -61925,18 +61925,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -61987,7 +61987,7 @@
}
],
"summary": "Create an issue comment",
- "description": "This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.2/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.2/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "This endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.2/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.2/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.2/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -62037,7 +62037,7 @@
"subcategoryLabel": "Comments",
"contentType": "application/json",
"notes": [],
- "descriptionHTML": "This endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
+ "descriptionHTML": "This endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
"bodyParameters": [
{
"type": "string",
@@ -62053,28 +62053,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -62179,13 +62179,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"performed_via_github_app\": null,\n \"label\": {\n \"name\": \"label\",\n \"color\": \"red\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -62283,13 +62283,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -62462,18 +62462,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -62646,18 +62646,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -62730,19 +62730,19 @@
"subcategoryLabel": "Labels",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -62827,18 +62827,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -62937,34 +62937,34 @@
"categoryLabel": "Issues",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Users with push access can lock an issue or pull request's conversation.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Users with push access can lock an issue or pull request's conversation.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -63049,25 +63049,25 @@
"category": "issues",
"categoryLabel": "Issues",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Users with push access can unlock an issue's conversation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Users with push access can unlock an issue's conversation.
"
+ ]
},
{
"verb": "get",
@@ -63187,18 +63187,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -63338,19 +63338,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -63435,15 +63435,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/issues/:issue_number/reactions/:reaction_id.
\nDelete a reaction to an issue.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/issues/:issue_number/reactions/:reaction_id.
\nDelete a reaction to an issue.
"
+ ]
},
{
"verb": "get",
@@ -63546,24 +63546,24 @@
"subcategoryLabel": "Timeline",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -63649,7 +63649,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n }\n]\n
"
}
]
@@ -63794,13 +63794,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -63878,13 +63878,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -63956,15 +63956,15 @@
"subcategory": "keys",
"subcategoryLabel": "Keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deploy keys are immutable. If you need to update a key, remove the key and create a new one instead.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deploy keys are immutable. If you need to update a key, remove the key and create a new one instead.
"
+ ]
},
{
"verb": "get",
@@ -64050,13 +64050,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -64200,18 +64200,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -64288,13 +64288,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -64444,7 +64444,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug%20:bug:\",\n \"name\": \"bug :bug:\",\n \"description\": \"Small bug fix required\",\n \"color\": \"b01f26\",\n \"default\": true\n}\n
"
}
]
@@ -64517,14 +64517,14 @@
"subcategoryLabel": "Labels",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -64588,7 +64588,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"C\": 78769,\n \"Python\": 7769\n}\n
"
}
]
@@ -64655,7 +64655,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"LICENSE\",\n \"path\": \"LICENSE\",\n \"sha\": \"401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"size\": 1077,\n \"url\": \"https://api.github.com/repos/benbalter/gman/contents/LICENSE?ref=master\",\n \"html_url\": \"https://github.com/benbalter/gman/blob/master/LICENSE\",\n \"git_url\": \"https://api.github.com/repos/benbalter/gman/git/blobs/401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"download_url\": \"https://raw.githubusercontent.com/benbalter/gman/master/LICENSE?lab=true\",\n \"type\": \"file\",\n \"content\": \"VGhlIE1JVCBMaWNlbnNlIChNSVQpCgpDb3B5cmlnaHQgKGMpIDIwMTMgQmVu\\nIEJhbHRlcgoKUGVybWlzc2lvbiBpcyBoZXJlYnkgZ3JhbnRlZCwgZnJlZSBv\\nZiBjaGFyZ2UsIHRvIGFueSBwZXJzb24gb2J0YWluaW5nIGEgY29weSBvZgp0\\naGlzIHNvZnR3YXJlIGFuZCBhc3NvY2lhdGVkIGRvY3VtZW50YXRpb24gZmls\\nZXMgKHRoZSAiU29mdHdhcmUiKSwgdG8gZGVhbCBpbgp0aGUgU29mdHdhcmUg\\nd2l0aG91dCByZXN0cmljdGlvbiwgaW5jbHVkaW5nIHdpdGhvdXQgbGltaXRh\\ndGlvbiB0aGUgcmlnaHRzIHRvCnVzZSwgY29weSwgbW9kaWZ5LCBtZXJnZSwg\\ncHVibGlzaCwgZGlzdHJpYnV0ZSwgc3VibGljZW5zZSwgYW5kL29yIHNlbGwg\\nY29waWVzIG9mCnRoZSBTb2Z0d2FyZSwgYW5kIHRvIHBlcm1pdCBwZXJzb25z\\nIHRvIHdob20gdGhlIFNvZnR3YXJlIGlzIGZ1cm5pc2hlZCB0byBkbyBzbywK\\nc3ViamVjdCB0byB0aGUgZm9sbG93aW5nIGNvbmRpdGlvbnM6CgpUaGUgYWJv\\ndmUgY29weXJpZ2h0IG5vdGljZSBhbmQgdGhpcyBwZXJtaXNzaW9uIG5vdGlj\\nZSBzaGFsbCBiZSBpbmNsdWRlZCBpbiBhbGwKY29waWVzIG9yIHN1YnN0YW50\\naWFsIHBvcnRpb25zIG9mIHRoZSBTb2Z0d2FyZS4KClRIRSBTT0ZUV0FSRSBJ\\nUyBQUk9WSURFRCAiQVMgSVMiLCBXSVRIT1VUIFdBUlJBTlRZIE9GIEFOWSBL\\nSU5ELCBFWFBSRVNTIE9SCklNUExJRUQsIElOQ0xVRElORyBCVVQgTk9UIExJ\\nTUlURUQgVE8gVEhFIFdBUlJBTlRJRVMgT0YgTUVSQ0hBTlRBQklMSVRZLCBG\\nSVRORVNTCkZPUiBBIFBBUlRJQ1VMQVIgUFVSUE9TRSBBTkQgTk9OSU5GUklO\\nR0VNRU5ULiBJTiBOTyBFVkVOVCBTSEFMTCBUSEUgQVVUSE9SUyBPUgpDT1BZ\\nUklHSFQgSE9MREVSUyBCRSBMSUFCTEUgRk9SIEFOWSBDTEFJTSwgREFNQUdF\\nUyBPUiBPVEhFUiBMSUFCSUxJVFksIFdIRVRIRVIKSU4gQU4gQUNUSU9OIE9G\\nIENPTlRSQUNULCBUT1JUIE9SIE9USEVSV0lTRSwgQVJJU0lORyBGUk9NLCBP\\nVVQgT0YgT1IgSU4KQ09OTkVDVElPTiBXSVRIIFRIRSBTT0ZUV0FSRSBPUiBU\\nSEUgVVNFIE9SIE9USEVSIERFQUxJTkdTIElOIFRIRSBTT0ZUV0FSRS4K\\n\",\n \"encoding\": \"base64\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/benbalter/gman/contents/LICENSE?ref=master\",\n \"git\": \"https://api.github.com/repos/benbalter/gman/git/blobs/401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"html\": \"https://github.com/benbalter/gman/blob/master/LICENSE\"\n },\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n}\n
"
}
]
@@ -64799,33 +64799,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Successful Response (The resulting merge commit)",
+ "description": "Successful Response (The resulting merge commit)
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ],\n \"stats\": {\n \"additions\": 104,\n \"deletions\": 4,\n \"total\": 108\n },\n \"files\": [\n {\n \"filename\": \"file1.txt\",\n \"additions\": 10,\n \"deletions\": 2,\n \"changes\": 12,\n \"status\": \"modified\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"patch\": \"@@ -29,7 +29,7 @@\\n.....\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when already merged"
+ "description": "Response when already merged
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found when the base or head does not exist"
+ "description": "Not Found when the base or head does not exist
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when there is a merge conflict"
+ "description": "Conflict when there is a merge conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -64959,13 +64959,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -65140,18 +65140,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -65229,13 +65229,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -65417,7 +65417,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
}
]
@@ -65491,19 +65491,19 @@
"subcategoryLabel": "Milestones",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -65599,7 +65599,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
}
]
@@ -65732,7 +65732,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n }\n]\n
"
}
]
@@ -65818,19 +65818,19 @@
"subcategoryLabel": "Notifications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Marks all notifications in a repository as \"read\" removes them from the default view on GitHub Enterprise Server. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub Enterprise Server will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List repository notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
}
],
- "descriptionHTML": "Marks all notifications in a repository as \"read\" removes them from the default view on GitHub Enterprise Server. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub Enterprise Server will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List repository notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"bodyParameters": [
{
"type": "string",
@@ -65906,13 +65906,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages\",\n \"status\": \"built\",\n \"cname\": \"developer.github.com\",\n \"custom_404\": false,\n \"html_url\": \"https://developer.github.com\",\n \"source\": {\n \"branch\": \"master\",\n \"path\": \"/\"\n },\n \"public\": true,\n \"https_certificate\": {\n \"state\": \"approved\",\n \"description\": \"Certificate is approved\",\n \"domains\": [\n \"developer.github.com\"\n ],\n \"expires_at\": \"2021-05-22\"\n },\n \"https_enforced\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -66076,18 +66076,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages\",\n \"status\": \"built\",\n \"cname\": \"developer.github.com\",\n \"custom_404\": false,\n \"html_url\": \"https://developer.github.com\",\n \"source\": {\n \"branch\": \"master\",\n \"path\": \"/\"\n },\n \"public\": true,\n \"https_certificate\": {\n \"state\": \"approved\",\n \"description\": \"Certificate is approved\",\n \"domains\": [\n \"developer.github.com\"\n ],\n \"expires_at\": \"2021-05-22\"\n },\n \"https_enforced\": true\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -66327,24 +66327,24 @@
"categoryLabel": "Pages",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Updates information for a GitHub Enterprise Server Pages site. For more information, see \"About GitHub Pages.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Updates information for a GitHub Enterprise Server Pages site. For more information, see \"About GitHub Pages.
",
"bodyParameters": [
{
"type": "string or nullable",
@@ -66480,24 +66480,24 @@
"categoryLabel": "Pages",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -66581,7 +66581,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n }\n]\n
"
}
]
@@ -66648,7 +66648,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/latest\",\n \"status\": \"queued\"\n}\n
"
}
]
@@ -66715,7 +66715,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n}\n
"
}
]
@@ -66791,7 +66791,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n}\n
"
}
]
@@ -66917,7 +66917,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\"\n }\n]\n
"
}
]
@@ -67003,7 +67003,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\"\n}\n
"
}
]
@@ -67133,7 +67133,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"enabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/repos/octocat/hello-world/pre-receive-hooks/42\"\n}\n
"
}
]
@@ -67219,7 +67219,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Responds with effective values inherited from owner and/or global level.",
+ "description": "Responds with effective values inherited from owner and/or global level.
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\"\n}\n
"
}
]
@@ -67328,33 +67328,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -67483,33 +67483,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -67662,18 +67662,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -67890,18 +67890,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -68040,7 +68040,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n }\n]\n
"
}
]
@@ -68131,13 +68131,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -68260,7 +68260,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
}
]
@@ -68333,20 +68333,20 @@
"subcategory": "comments",
"subcategoryLabel": "Comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a review comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a review comment.
"
+ ]
},
{
"verb": "get",
@@ -68466,13 +68466,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -68612,19 +68612,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -68709,15 +68709,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/pulls/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a pull request review comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/pulls/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a pull request review comment.
"
+ ]
},
{
"verb": "get",
@@ -68790,23 +68790,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Pass the appropriate [media type](https://docs.github.com/enterprise-server@3.2/rest/overview/media-types/#commits-commit-comparison-and-pull-requests) to fetch diff and patch formats.",
+ "description": "Pass the appropriate media type to fetch diff and patch formats.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -68999,18 +68999,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69159,7 +69159,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n }\n]\n
"
}
]
@@ -69468,18 +69468,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69605,13 +69605,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 426899381,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -69706,7 +69706,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n]\n
"
}
]
@@ -69802,18 +69802,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"sha\": \"bbcd538c8e72b8c175046e27cc8f907076331401\",\n \"filename\": \"file1.txt\",\n \"status\": \"added\",\n \"additions\": 103,\n \"deletions\": 21,\n \"changes\": 124,\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/file1.txt?ref=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"patch\": \"@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -69883,19 +69883,19 @@
"categoryLabel": "Pulls",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if pull request has been merged"
+ "description": "Response if pull request has been merged
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if pull request has not been merged"
+ "description": "Not Found if pull request has not been merged
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -70066,35 +70066,35 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if merge was successful",
+ "description": "if merge was successful
",
"payload": "{\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "405",
"httpStatusMessage": "Method Not Allowed",
- "description": "Method Not Allowed if merge cannot be performed",
+ "description": "Method Not Allowed if merge cannot be performed
",
"payload": "{\n \"message\": \"Pull Request is not mergeable\"\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict if sha was provided and pull request head did not match",
+ "description": "Conflict if sha was provided and pull request head did not match
",
"payload": "{\n \"message\": \"Head branch was modified. Review and try the merge again.\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -70191,7 +70191,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n}\n
"
}
]
@@ -70354,18 +70354,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if user is not a collaborator"
+ "description": "Unprocessable Entity if user is not a collaborator
"
}
]
},
@@ -70491,12 +70491,12 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -70619,7 +70619,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The list of reviews returns in chronological order.",
+ "description": "The list of reviews returns in chronological order.
",
"payload": "[\n {\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -70906,18 +70906,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -71190,13 +71190,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -71321,13 +71321,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change. And add more about this.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -71414,18 +71414,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -71532,13 +71532,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -71678,18 +71678,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"DISMISSED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -71839,23 +71839,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -71972,18 +71972,18 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"message\": \"Updating pull request branch.\",\n \"url\": \"https://github.com/repos/octocat/Hello-World/pulls/53\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -72061,18 +72061,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"file\",\n \"encoding\": \"base64\",\n \"size\": 5362,\n \"name\": \"README.md\",\n \"path\": \"README.md\",\n \"content\": \"encoded content ...\",\n \"sha\": \"3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"git_url\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"html_url\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\",\n \"download_url\": \"https://raw.githubusercontent.com/octokit/octokit.rb/master/README.md\",\n \"_links\": {\n \"git\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"self\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"html\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -72161,18 +72161,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"file\",\n \"encoding\": \"base64\",\n \"size\": 5362,\n \"name\": \"README.md\",\n \"path\": \"README.md\",\n \"content\": \"encoded content ...\",\n \"sha\": \"3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"git_url\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"html_url\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\",\n \"download_url\": \"https://raw.githubusercontent.com/octokit/octokit.rb/master/README.md\",\n \"_links\": {\n \"git\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"self\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"html\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -72258,13 +72258,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -72468,13 +72468,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -72552,23 +72552,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "To download the asset's binary content, set the `Accept` header of the request to [`application/octet-stream`](https://docs.github.com/enterprise-server@3.2/rest/overview/media-types). The API will either redirect the client to the location, or stream it directly if possible. API clients should handle both a `200` or `302` response.",
+ "description": "To download the asset's binary content, set the Accept header of the request to application/octet-stream. The API will either redirect the client to the location, or stream it directly if possible. API clients should handle both a 200 or 302 response.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Found"
+ "description": "Found
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -72718,7 +72718,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -72792,14 +72792,14 @@
"subcategoryLabel": "Assets",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -72863,7 +72863,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
}
]
@@ -72941,13 +72941,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -73023,13 +73023,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "**Note:** This returns an `upload_url` key corresponding to the endpoint for uploading release assets. This key is a [hypermedia resource](https://docs.github.com/enterprise-server@3.2/rest/overview/resources-in-the-rest-api#hypermedia).",
+ "description": "Note: This returns an upload_url key corresponding to the endpoint for uploading release assets. This key is a hypermedia resource.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -73235,7 +73235,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
}
]
@@ -73306,15 +73306,15 @@
"category": "releases",
"categoryLabel": "Releases",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Users with push access to the repository can delete a release.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Users with push access to the repository can delete a release.
"
+ ]
},
{
"verb": "get",
@@ -73410,7 +73410,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
}
]
@@ -73529,13 +73529,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response for successful upload",
+ "description": "Response for successful upload
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Response if you upload an asset with the same filename as another uploaded asset"
+ "description": "Response if you upload an asset with the same filename as another uploaded asset
"
}
]
},
@@ -73671,19 +73671,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -73803,18 +73803,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"number\": 2,\n \"created_at\": \"2020-11-06T18:48:51Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/2\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2/locations\",\n \"state\": \"resolved\",\n \"resolution\": \"false_positive\",\n \"resolved_at\": \"2020-11-07T02:47:13Z\",\n \"resolved_by\": {\n \"login\": \"monalisa\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjI=\",\n \"avatar_url\": \"https://alambic.github.com/avatars/u/2?\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/monalisa\",\n \"followers_url\": \"https://api.github.com/users/monalisa/followers\",\n \"following_url\": \"https://api.github.com/users/monalisa/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/monalisa/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/monalisa/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/monalisa/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/monalisa/orgs\",\n \"repos_url\": \"https://api.github.com/users/monalisa/repos\",\n \"events_url\": \"https://api.github.com/users/monalisa/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/monalisa/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"secret_type\": \"adafruit_io_key\",\n \"secret\": \"aio_XXXXXXXXXXXXXXXXXXXXXXXXXXXX\"\n },\n {\n \"number\": 1,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/repo/secret-scanning/alerts/1\",\n \"html_url\": \"https://github.com/owner/repo/security/secret-scanning/1\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/1/locations\",\n \"state\": \"open\",\n \"resolution\": null,\n \"resolved_at\": null,\n \"resolved_by\": null,\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public or secret scanning is disabled for the repository"
+ "description": "Repository is public or secret scanning is disabled for the repository
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -73892,23 +73892,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/42\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42/locations\",\n \"state\": \"open\",\n \"resolution\": null,\n \"resolved_at\": null,\n \"resolved_by\": null,\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found"
+ "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -74066,23 +74066,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/42\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42/locations\",\n \"state\": \"resolved\",\n \"resolution\": \"used_in_tests\",\n \"resolved_at\": \"2020-11-16T22:42:07Z\",\n \"resolved_by\": {\n \"login\": \"monalisa\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjI=\",\n \"avatar_url\": \"https://alambic.github.com/avatars/u/2?\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/monalisa\",\n \"followers_url\": \"https://api.github.com/users/monalisa/followers\",\n \"following_url\": \"https://api.github.com/users/monalisa/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/monalisa/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/monalisa/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/monalisa/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/monalisa/orgs\",\n \"repos_url\": \"https://api.github.com/users/monalisa/repos\",\n \"events_url\": \"https://api.github.com/users/monalisa/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/monalisa/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found"
+ "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "State does not match the resolution"
+ "description": "State does not match the resolution
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -74182,7 +74182,7 @@
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -74250,18 +74250,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Returns a weekly aggregate of the number of additions and deletions pushed to a repository.",
+ "description": "Returns a weekly aggregate of the number of additions and deletions pushed to a repository.
",
"payload": "[\n [\n 1302998400,\n 1124,\n -435\n ]\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -74329,18 +74329,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"days\": [\n 0,\n 3,\n 26,\n 20,\n 39,\n 1,\n 0\n ],\n \"total\": 89,\n \"week\": 1336280400\n }\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -74408,18 +74408,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "* `w` - Start of the week, given as a [Unix timestamp](http://en.wikipedia.org/wiki/Unix_time).\n* `a` - Number of additions\n* `d` - Number of deletions\n* `c` - Number of commits",
+ "description": "\nw - Start of the week, given as a Unix timestamp. \na - Number of additions \nd - Number of deletions \nc - Number of commits \n
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"total\": 135,\n \"weeks\": [\n {\n \"w\": 1367712000,\n \"a\": 6898,\n \"d\": 77,\n \"c\": 10\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -74487,13 +74487,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The array order is oldest week (index 0) to most recent week.",
+ "description": "The array order is oldest week (index 0) to most recent week.
",
"payload": "{\n \"all\": [\n 11,\n 21,\n 15,\n 2,\n 8,\n 1,\n 8,\n 23,\n 17,\n 21,\n 11,\n 10,\n 33,\n 91,\n 38,\n 34,\n 22,\n 23,\n 32,\n 3,\n 43,\n 87,\n 71,\n 18,\n 13,\n 5,\n 13,\n 16,\n 66,\n 27,\n 12,\n 45,\n 110,\n 117,\n 13,\n 8,\n 18,\n 9,\n 19,\n 26,\n 39,\n 12,\n 20,\n 31,\n 46,\n 91,\n 45,\n 10,\n 24,\n 9,\n 29,\n 7\n ],\n \"owner\": [\n 3,\n 2,\n 3,\n 0,\n 2,\n 0,\n 5,\n 14,\n 7,\n 9,\n 1,\n 5,\n 0,\n 48,\n 19,\n 2,\n 0,\n 1,\n 10,\n 2,\n 23,\n 40,\n 35,\n 8,\n 8,\n 2,\n 10,\n 6,\n 30,\n 0,\n 2,\n 9,\n 53,\n 104,\n 3,\n 3,\n 10,\n 4,\n 7,\n 11,\n 21,\n 4,\n 4,\n 22,\n 26,\n 63,\n 11,\n 2,\n 14,\n 1,\n 10,\n 3\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -74561,13 +74561,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "For example, `[2, 14, 25]` indicates that there were 25 total commits, during the 2:00pm hour on Tuesdays. All times are based on the time zone of individual commits.",
+ "description": "For example, [2, 14, 25] indicates that there were 25 total commits, during the 2:00pm hour on Tuesdays. All times are based on the time zone of individual commits.
",
"payload": "[\n [\n 0,\n 0,\n 5\n ],\n [\n 0,\n 1,\n 43\n ],\n [\n 0,\n 2,\n 21\n ]\n]\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -74754,7 +74754,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -74843,7 +74843,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -74912,18 +74912,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if you subscribe to the repository",
+ "description": "if you subscribe to the repository
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/repos/octocat/example/subscription\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if you don't subscribe to the repository"
+ "description": "Not Found if you don't subscribe to the repository
"
}
]
},
@@ -75041,7 +75041,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/repos/octocat/example/subscription\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\"\n}\n
"
}
]
@@ -75104,15 +75104,15 @@
"subcategory": "watching",
"subcategoryLabel": "Watching",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This endpoint should only be used to stop watching a repository. To control whether or not you wish to receive notifications from a repository, set the repository's subscription manually.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This endpoint should only be used to stop watching a repository. To control whether or not you wish to receive notifications from a repository, set the repository's subscription manually.
"
+ ]
},
{
"verb": "get",
@@ -75196,7 +75196,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"v0.1\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"zipball_url\": \"https://github.com/octocat/Hello-World/zipball/v0.1\",\n \"tarball_url\": \"https://github.com/octocat/Hello-World/tarball/v0.1\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
}
]
@@ -75268,15 +75268,15 @@
"subcategory": "contents",
"subcategoryLabel": "Contents",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a tar archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a tar archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
"
+ ]
},
{
"verb": "get",
@@ -75360,7 +75360,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
}
]
@@ -75453,18 +75453,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"names\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -75585,23 +75585,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"names\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -75733,7 +75733,7 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n}\n
"
}
]
@@ -75805,15 +75805,15 @@
"subcategory": "contents",
"subcategoryLabel": "Contents",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a zip archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a zip archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
"
+ ]
},
{
"verb": "post",
@@ -76001,7 +76001,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"allow_auto_merge\": false,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n }\n}\n
"
}
]
@@ -76076,18 +76076,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -76176,7 +76176,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"secrets\": [\n {\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n },\n {\n \"name\": \"GIST_ID\",\n \"created_at\": \"2020-01-10T10:59:22Z\",\n \"updated_at\": \"2020-01-11T11:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -76246,7 +76246,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -76326,7 +76326,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n}\n
"
}
]
@@ -76379,7 +76379,7 @@
}
],
"summary": "Create or update an environment secret",
- "description": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -76444,15 +76444,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -76544,15 +76544,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in an environment using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Default response"
+ "description": "Default response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in an environment using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -76656,28 +76656,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 7,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"name\": \"classes.js\",\n \"path\": \"src/attributes/classes.js\",\n \"sha\": \"d7212f9dee2dcc18f084d7df8f417b80846ded5a\",\n \"url\": \"https://api.github.com/repositories/167174/contents/src/attributes/classes.js?ref=825ac3773694e0cd23ee74895fd5aeb535b27da4\",\n \"git_url\": \"https://api.github.com/repositories/167174/git/blobs/d7212f9dee2dcc18f084d7df8f417b80846ded5a\",\n \"html_url\": \"https://github.com/jquery/jquery/blob/825ac3773694e0cd23ee74895fd5aeb535b27da4/src/attributes/classes.js\",\n \"repository\": {\n \"id\": 167174,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxNjcxNzQ=\",\n \"name\": \"jquery\",\n \"full_name\": \"jquery/jquery\",\n \"owner\": {\n \"login\": \"jquery\",\n \"id\": 70142,\n \"node_id\": \"MDQ6VXNlcjcwMTQy\",\n \"avatar_url\": \"https://0.gravatar.com/avatar/6906f317a4733f4379b06c32229ef02f?d=https%3A%2F%2Fidenticons.github.com%2Ff426f04f2f9813718fb806b30e0093de.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/jquery\",\n \"html_url\": \"https://github.com/jquery\",\n \"followers_url\": \"https://api.github.com/users/jquery/followers\",\n \"following_url\": \"https://api.github.com/users/jquery/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/jquery/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/jquery/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/jquery/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/jquery/orgs\",\n \"repos_url\": \"https://api.github.com/users/jquery/repos\",\n \"events_url\": \"https://api.github.com/users/jquery/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/jquery/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/jquery/jquery\",\n \"description\": \"jQuery JavaScript Library\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/jquery/jquery\",\n \"forks_url\": \"https://api.github.com/repos/jquery/jquery/forks\",\n \"keys_url\": \"https://api.github.com/repos/jquery/jquery/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/jquery/jquery/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/jquery/jquery/teams\",\n \"hooks_url\": \"https://api.github.com/repos/jquery/jquery/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/jquery/jquery/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/jquery/jquery/events\",\n \"assignees_url\": \"https://api.github.com/repos/jquery/jquery/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/jquery/jquery/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/jquery/jquery/tags\",\n \"blobs_url\": \"https://api.github.com/repos/jquery/jquery/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/jquery/jquery/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/jquery/jquery/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/jquery/jquery/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/jquery/jquery/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/jquery/jquery/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/jquery/jquery/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/jquery/jquery/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/jquery/jquery/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/jquery/jquery/subscription\",\n \"commits_url\": \"https://api.github.com/repos/jquery/jquery/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/jquery/jquery/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/jquery/jquery/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/jquery/jquery/issues/comments/{number}\",\n \"contents_url\": \"https://api.github.com/repos/jquery/jquery/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/jquery/jquery/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/jquery/jquery/merges\",\n \"archive_url\": \"https://api.github.com/repos/jquery/jquery/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/jquery/jquery/downloads\",\n \"issues_url\": \"https://api.github.com/repos/jquery/jquery/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/jquery/jquery/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/jquery/jquery/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/jquery/jquery/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/jquery/jquery/labels{/name}\",\n \"deployments_url\": \"http://api.github.com/repos/octocat/Hello-World/deployments\",\n \"releases_url\": \"http://api.github.com/repos/octocat/Hello-World/releases{/id}\"\n },\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -76790,13 +76790,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"sha\": \"bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"html_url\": \"https://github.com/octocat/Spoon-Knife/commit/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"author\": {\n \"date\": \"2014-02-04T14:38:36-08:00\",\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"date\": \"2014-02-12T15:18:55-08:00\",\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"message\": \"Create styles.css and updated README\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/trees/a639e96f9038797fba6e0469f94a4b0cc459fa68\",\n \"sha\": \"a639e96f9038797fba6e0469f94a4b0cc459fa68\"\n },\n \"comment_count\": 8\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 583231,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/583231?v=3\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {},\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/a30c19e3f13765a3b48829788bc1cb8b4e95cee4\",\n \"html_url\": \"https://github.com/octocat/Spoon-Knife/commit/a30c19e3f13765a3b48829788bc1cb8b4e95cee4\",\n \"sha\": \"a30c19e3f13765a3b48829788bc1cb8b4e95cee4\"\n }\n ],\n \"repository\": {\n \"id\": 1300192,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMzAwMTky\",\n \"name\": \"Spoon-Knife\",\n \"full_name\": \"octocat/Spoon-Knife\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 583231,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/583231?v=3\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Spoon-Knife\",\n \"description\": \"This repo is for demonstration purposes only.\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/forks\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/events\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/merges\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/deployments\"\n },\n \"score\": 1,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -76912,28 +76912,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 280,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132\",\n \"repository_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit\",\n \"labels_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/comments\",\n \"events_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/events\",\n \"html_url\": \"https://github.com/batterseapower/pinyin-toolkit/issues/132\",\n \"id\": 35802,\n \"node_id\": \"MDU6SXNzdWUzNTgwMg==\",\n \"number\": 132,\n \"title\": \"Line Number Indexes Beyond 20 Not Displayed\",\n \"user\": {\n \"login\": \"Nick3C\",\n \"id\": 90254,\n \"node_id\": \"MDQ6VXNlcjkwMjU0\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/934442aadfe3b2f4630510de416c5718?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Nick3C\",\n \"html_url\": \"https://github.com/Nick3C\",\n \"followers_url\": \"https://api.github.com/users/Nick3C/followers\",\n \"following_url\": \"https://api.github.com/users/Nick3C/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Nick3C/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Nick3C/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Nick3C/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Nick3C/orgs\",\n \"repos_url\": \"https://api.github.com/users/Nick3C/repos\",\n \"events_url\": \"https://api.github.com/users/Nick3C/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Nick3C/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"labels\": [\n {\n \"id\": 4,\n \"node_id\": \"MDU6TGFiZWw0\",\n \"url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/labels/bug\",\n \"name\": \"bug\",\n \"color\": \"ff0000\"\n }\n ],\n \"state\": \"open\",\n \"assignee\": null,\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"comments\": 15,\n \"created_at\": \"2009-07-12T20:10:41Z\",\n \"updated_at\": \"2009-07-19T09:23:43Z\",\n \"closed_at\": null,\n \"pull_request\": {\n \"url\": \"https://api/github.com/repos/octocat/Hello-World/pull/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"body\": \"...\",\n \"score\": 1,\n \"locked\": true,\n \"author_association\": \"COLLABORATOR\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -77050,28 +77050,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"id\": 418327088,\n \"node_id\": \"MDU6TGFiZWw0MTgzMjcwODg=\",\n \"url\": \"https://api.github.com/repos/octocat/linguist/labels/enhancement\",\n \"name\": \"enhancement\",\n \"color\": \"84b6eb\",\n \"default\": true,\n \"description\": \"New feature or request.\",\n \"score\": 1\n },\n {\n \"id\": 418327086,\n \"node_id\": \"MDU6TGFiZWw0MTgzMjcwODY=\",\n \"url\": \"https://api.github.com/repos/octocat/linguist/labels/bug\",\n \"name\": \"bug\",\n \"color\": \"ee0701\",\n \"default\": true,\n \"description\": \"Something isn't working.\",\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -77186,23 +77186,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 40,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"id\": 3081286,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkzMDgxMjg2\",\n \"name\": \"Tetris\",\n \"full_name\": \"dtrupenn/Tetris\",\n \"owner\": {\n \"login\": \"dtrupenn\",\n \"id\": 872147,\n \"node_id\": \"MDQ6VXNlcjg3MjE0Nw==\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/e7956084e75f239de85d3a31bc172ace?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/dtrupenn\",\n \"received_events_url\": \"https://api.github.com/users/dtrupenn/received_events\",\n \"type\": \"User\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"site_admin\": true\n },\n \"private\": false,\n \"html_url\": \"https://github.com/dtrupenn/Tetris\",\n \"description\": \"A C implementation of Tetris using Pennsim through LC4\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/dtrupenn/Tetris\",\n \"created_at\": \"2012-01-01T00:31:50Z\",\n \"updated_at\": \"2013-01-05T17:58:47Z\",\n \"pushed_at\": \"2012-01-01T00:37:02Z\",\n \"homepage\": \"https://github.com\",\n \"size\": 524,\n \"stargazers_count\": 1,\n \"watchers_count\": 1,\n \"language\": \"Assembly\",\n \"forks_count\": 0,\n \"open_issues_count\": 0,\n \"master_branch\": \"master\",\n \"default_branch\": \"master\",\n \"score\": 1,\n \"archive_url\": \"https://api.github.com/repos/dtrupenn/Tetris/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/dtrupenn/Tetris/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/dtrupenn/Tetris/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/dtrupenn/Tetris/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/dtrupenn/Tetris/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/dtrupenn/Tetris/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/dtrupenn/Tetris/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/dtrupenn/Tetris/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/dtrupenn/Tetris/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/dtrupenn/Tetris/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/dtrupenn/Tetris/downloads\",\n \"events_url\": \"https://api.github.com/repos/dtrupenn/Tetris/events\",\n \"forks_url\": \"https://api.github.com/repos/dtrupenn/Tetris/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/tags{/sha}\",\n \"git_url\": \"git:github.com/dtrupenn/Tetris.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/dtrupenn/Tetris/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/dtrupenn/Tetris/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/dtrupenn/Tetris/languages\",\n \"merges_url\": \"https://api.github.com/repos/dtrupenn/Tetris/merges\",\n \"milestones_url\": \"https://api.github.com/repos/dtrupenn/Tetris/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/dtrupenn/Tetris/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/dtrupenn/Tetris/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/dtrupenn/Tetris/releases{/id}\",\n \"ssh_url\": \"git@github.com:dtrupenn/Tetris.git\",\n \"stargazers_url\": \"https://api.github.com/repos/dtrupenn/Tetris/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/dtrupenn/Tetris/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/dtrupenn/Tetris/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/dtrupenn/Tetris/subscription\",\n \"tags_url\": \"https://api.github.com/repos/dtrupenn/Tetris/tags\",\n \"teams_url\": \"https://api.github.com/repos/dtrupenn/Tetris/teams\",\n \"trees_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/dtrupenn/Tetris.git\",\n \"mirror_url\": \"git:git.example.com/dtrupenn/Tetris\",\n \"hooks_url\": \"https://api.github.com/repos/dtrupenn/Tetris/hooks\",\n \"svn_url\": \"https://svn.github.com/dtrupenn/Tetris\",\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1,\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_pages\": true,\n \"has_wiki\": true,\n \"has_downloads\": true,\n \"archived\": true,\n \"disabled\": true,\n \"visibility\": \"private\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -77286,18 +77286,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 6,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"name\": \"ruby\",\n \"display_name\": \"Ruby\",\n \"short_description\": \"Ruby is a scripting language designed for simplified object-oriented programming.\",\n \"description\": \"Ruby was developed by Yukihiro \\\"Matz\\\" Matsumoto in 1995 with the intent of having an easily readable programming language. It is integrated with the Rails framework to create dynamic web-applications. Ruby's syntax is similar to that of Perl and Python.\",\n \"created_by\": \"Yukihiro Matsumoto\",\n \"released\": \"December 21, 1995\",\n \"created_at\": \"2016-11-28T22:03:59Z\",\n \"updated_at\": \"2017-10-30T18:16:32Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"rails\",\n \"display_name\": \"Rails\",\n \"short_description\": \"Ruby on Rails (Rails) is a web application framework written in Ruby.\",\n \"description\": \"Ruby on Rails (Rails) is a web application framework written in Ruby. It is meant to help simplify the building of complex websites.\",\n \"created_by\": \"David Heinemeier Hansson\",\n \"released\": \"December 13 2005\",\n \"created_at\": \"2016-12-09T17:03:50Z\",\n \"updated_at\": \"2017-10-30T16:20:19Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"python\",\n \"display_name\": \"Python\",\n \"short_description\": \"Python is a dynamically typed programming language.\",\n \"description\": \"Python is a dynamically typed programming language designed by Guido Van Rossum. Much like the programming language Ruby, Python was designed to be easily read by programmers. Because of its large following and many libraries, Python can be implemented and used to do anything from webpages to scientific research.\",\n \"created_by\": \"Guido van Rossum\",\n \"released\": \"February 20, 1991\",\n \"created_at\": \"2016-12-07T00:07:02Z\",\n \"updated_at\": \"2017-10-27T22:45:43Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"jekyll\",\n \"display_name\": \"Jekyll\",\n \"short_description\": \"Jekyll is a simple, blog-aware static site generator.\",\n \"description\": \"Jekyll is a blog-aware, site generator written in Ruby. It takes raw text files, runs it through a renderer and produces a publishable static website.\",\n \"created_by\": \"Tom Preston-Werner\",\n \"released\": \"2008\",\n \"created_at\": \"2016-12-16T21:53:08Z\",\n \"updated_at\": \"2017-10-27T19:00:24Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"sass\",\n \"display_name\": \"Sass\",\n \"short_description\": \"Sass is a stable extension to classic CSS.\",\n \"description\": \"Sass is a stylesheet language with a main implementation in Ruby. It is an extension of CSS that makes improvements to the old stylesheet format, such as being able to declare variables and using a cleaner nesting syntax.\",\n \"created_by\": \"Hampton Catlin, Natalie Weizenbaum, Chris Eppstein\",\n \"released\": \"November 28, 2006\",\n \"created_at\": \"2016-12-16T21:53:45Z\",\n \"updated_at\": \"2018-01-16T16:30:40Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"homebrew\",\n \"display_name\": \"Homebrew\",\n \"short_description\": \"Homebrew is a package manager for macOS.\",\n \"description\": \"Homebrew is a package manager for Apple's macOS operating system. It simplifies the installation of software and is popular in the Ruby on Rails community.\",\n \"created_by\": \"Max Howell\",\n \"released\": \"2009\",\n \"created_at\": \"2016-12-17T20:30:44Z\",\n \"updated_at\": \"2018-02-06T16:14:56Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -77405,23 +77405,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 12,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"login\": \"mojombo\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/mojombo\",\n \"html_url\": \"https://github.com/mojombo\",\n \"followers_url\": \"https://api.github.com/users/mojombo/followers\",\n \"subscriptions_url\": \"https://api.github.com/users/mojombo/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/mojombo/orgs\",\n \"repos_url\": \"https://api.github.com/users/mojombo/repos\",\n \"received_events_url\": \"https://api.github.com/users/mojombo/received_events\",\n \"type\": \"User\",\n \"score\": 1,\n \"following_url\": \"https://api.github.com/users/mojombo/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/mojombo/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/mojombo/starred{/owner}{/repo}\",\n \"events_url\": \"https://api.github.com/users/mojombo/events{/privacy}\",\n \"site_admin\": true\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -77470,7 +77470,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"running\",\n \"progress\": [\n {\n \"status\": \"DONE\",\n \"key\": \"Appliance core components\"\n },\n {\n \"status\": \"DONE\",\n \"key\": \"GitHub utilities\"\n },\n {\n \"status\": \"DONE\",\n \"key\": \"GitHub applications\"\n },\n {\n \"status\": \"CONFIGURING\",\n \"key\": \"GitHub services\"\n },\n {\n \"status\": \"PENDING\",\n \"key\": \"Reloading appliance services\"\n }\n ]\n}\n
"
}
]
@@ -77514,15 +77514,15 @@
"subcategory": "management-console",
"subcategoryLabel": "Management console",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This endpoint allows you to start a configuration process at any time for your updated settings to take effect:
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This endpoint allows you to start a configuration process at any time for your updated settings to take effect:
"
+ ]
},
{
"verb": "get",
@@ -77569,7 +77569,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"scheduled\",\n \"scheduled_time\": \"Tuesday, January 22 at 15:34 -0800\",\n \"connection_services\": [\n {\n \"name\": \"git operations\",\n \"number\": 0\n },\n {\n \"name\": \"mysql queries\",\n \"number\": 233\n },\n {\n \"name\": \"resque jobs\",\n \"number\": 54\n }\n ]\n}\n
"
}
]
@@ -77657,7 +77657,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"scheduled\",\n \"scheduled_time\": \"Tuesday, January 22 at 15:34 -0800\",\n \"connection_services\": [\n {\n \"name\": \"git operations\",\n \"number\": 0\n },\n {\n \"name\": \"mysql queries\",\n \"number\": 233\n },\n {\n \"name\": \"resque jobs\",\n \"number\": 54\n }\n ]\n}\n
"
}
]
@@ -77707,7 +77707,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enterprise\": {\n \"private_mode\": false,\n \"public_pages\": false,\n \"subdomain_isolation\": true,\n \"signup_enabled\": false,\n \"github_hostname\": \"ghe.local\",\n \"identicons_host\": \"dotcom\",\n \"http_proxy\": null,\n \"auth_mode\": \"default\",\n \"expire_sessions\": false,\n \"admin_password\": null,\n \"configuration_id\": 1401777404,\n \"configuration_run_count\": 4,\n \"avatar\": {\n \"enabled\": false,\n \"uri\": \"\"\n },\n \"customer\": {\n \"name\": \"GitHub\",\n \"email\": \"stannis@themannis.biz\",\n \"uuid\": \"af6cac80-e4e1-012e-d822-1231380e52e9\",\n \"secret_key_data\": \"-----BEGIN PGP PRIVATE KEY BLOCK-----\\nVersion: GnuPG v1.4.10 (GNU/Linux)\\n\\nlQcYBE5TCgsBEACk4yHpUcapplebaumBMXYMiLF+nCQ0lxpx...\\n-----END PGP PRIVATE KEY BLOCK-----\\n\",\n \"public_key_data\": \"-----BEGIN PGP PUBLIC KEY BLOCK-----\\nVersion: GnuPG v1.4.10 (GNU/Linux)\\n\\nmI0ETqzZYgEEALSe6snowdenXyqvLfSQ34HWD6C7....\\n-----END PGP PUBLIC KEY BLOCK-----\\n\"\n },\n \"license\": {\n \"seats\": 0,\n \"evaluation\": false,\n \"perpetual\": false,\n \"unlimited_seating\": true,\n \"support_key\": \"ssh-rsa AAAAB3N....\",\n \"ssh_allowed\": true,\n \"cluster_support\": false,\n \"expire_at\": \"2016-04-27T00:00:00-07:00\"\n },\n \"github_ssl\": {\n \"enabled\": false,\n \"cert\": null,\n \"key\": null\n },\n \"ldap\": {\n \"host\": null,\n \"port\": 0,\n \"base\": [],\n \"uid\": null,\n \"bind_dn\": null,\n \"password\": null,\n \"method\": \"Plain\",\n \"search_strategy\": \"detect\",\n \"user_groups\": [],\n \"admin_group\": null,\n \"virtual_attribute_enabled\": false,\n \"recursive_group_search\": false,\n \"posix_support\": true,\n \"user_sync_emails\": false,\n \"user_sync_keys\": false,\n \"user_sync_interval\": 4,\n \"team_sync_interval\": 4,\n \"sync_enabled\": false,\n \"reconciliation\": {\n \"user\": null,\n \"org\": null\n },\n \"profile\": {\n \"uid\": \"uid\",\n \"name\": null,\n \"mail\": null,\n \"key\": null\n }\n },\n \"cas\": {\n \"url\": null\n },\n \"saml\": {\n \"sso_url\": null,\n \"certificate\": null,\n \"certificate_path\": null,\n \"issuer\": null,\n \"idp_initiated_sso\": false,\n \"disable_admin_demote\": false\n },\n \"github_oauth\": {\n \"client_id\": \"12313412\",\n \"client_secret\": \"kj123131132\",\n \"organization_name\": \"Homestar Runners\",\n \"organization_team\": \"homestarrunners/characters\"\n },\n \"smtp\": {\n \"enabled\": true,\n \"address\": \"smtp.example.com\",\n \"authentication\": \"plain\",\n \"port\": \"1234\",\n \"domain\": \"blah\",\n \"username\": \"foo\",\n \"user_name\": \"mr_foo\",\n \"enable_starttls_auto\": true,\n \"password\": \"bar\",\n \"discard-to-noreply-address\": true,\n \"support_address\": \"enterprise@github.com\",\n \"support_address_type\": \"email\",\n \"noreply_address\": \"noreply@github.com\"\n },\n \"ntp\": {\n \"primary_server\": \"0.pool.ntp.org\",\n \"secondary_server\": \"1.pool.ntp.org\"\n },\n \"timezone\": null,\n \"snmp\": {\n \"enabled\": false,\n \"community\": \"\"\n },\n \"syslog\": {\n \"enabled\": false,\n \"server\": null,\n \"protocol_name\": \"udp\"\n },\n \"assets\": null,\n \"pages\": {\n \"enabled\": true\n },\n \"collectd\": {\n \"enabled\": false,\n \"server\": null,\n \"port\": 0,\n \"encryption\": null,\n \"username\": null,\n \"password\": null\n },\n \"mapping\": {\n \"enabled\": true,\n \"tileserver\": null,\n \"basemap\": \"company.map-qsz2zrvs\",\n \"token\": null\n },\n \"load_balancer\": null\n },\n \"run_list\": [\n \"recipe[enterprise-configure]\"\n ]\n}\n
"
}
]
@@ -77779,14 +77779,14 @@
"subcategoryLabel": "Management console",
"contentType": "application/x-www-form-urlencoded",
"notes": [],
+ "descriptionHTML": "For a list of the available settings, see the Get settings endpoint.
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "For a list of the available settings, see the Get settings endpoint.
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"bodyParameters": [
{
"type": "string",
@@ -77844,7 +77844,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n }\n]\n
"
}
]
@@ -77932,7 +77932,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n }\n]\n
"
}
]
@@ -78020,7 +78020,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n }\n]\n
"
}
]
@@ -78107,14 +78107,14 @@
"subcategoryLabel": "Management console",
"contentType": "application/x-www-form-urlencoded",
"notes": [],
+ "descriptionHTML": "When you boot a GitHub instance for the first time, you can use the following endpoint to upload a license.
\nNote that you need to POST to /setup/api/configure to start the actual configuration process.
\nWhen using this endpoint, your GitHub instance must have a password set. This can be accomplished two ways:
\n\n- If you're working directly with the API before accessing the web interface, you must pass in the password parameter to set your password.
\n- If you set up your instance via the web interface before accessing the API, your calls to this endpoint do not need the password parameter.
\n
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "When you boot a GitHub instance for the first time, you can use the following endpoint to upload a license.
\nNote that you need to POST to /setup/api/configure to start the actual configuration process.
\nWhen using this endpoint, your GitHub instance must have a password set. This can be accomplished two ways:
\n\n- If you're working directly with the API before accessing the web interface, you must pass in the password parameter to set your password.
\n- If you set up your instance via the web interface before accessing the API, your calls to this endpoint do not need the password parameter.
\n
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"bodyParameters": [
{
"type": "string",
@@ -78205,14 +78205,14 @@
"subcategoryLabel": "Management console",
"contentType": "application/x-www-form-urlencoded",
"notes": [],
+ "descriptionHTML": "This API upgrades your license and also triggers the configuration process.
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "This API upgrades your license and also triggers the configuration process.
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"bodyParameters": [
{
"type": "string",
@@ -78281,13 +78281,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -78481,29 +78481,29 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -78557,25 +78557,25 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a team endpoint.
\nTo delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a team endpoint.
\nTo delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
"
+ ]
},
{
"verb": "get",
@@ -78677,7 +78677,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -78826,7 +78826,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -78905,7 +78905,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -79037,7 +79037,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 1,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Welcome to our first team post\",\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -79103,15 +79103,15 @@
"subcategory": "discussions",
"subcategoryLabel": "Discussions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion endpoint.
\nDelete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion endpoint.
\nDelete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -79222,7 +79222,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -79340,7 +79340,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -79428,7 +79428,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -79554,7 +79554,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like pineapples?\",\n \"body_html\": \"<p>Do you like pineapples?</p>\",\n \"body_version\": \"e6907b24d9c93cc0c5024a7af5888116\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -79629,15 +79629,15 @@
"subcategory": "discussion-comments",
"subcategoryLabel": "Discussion comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion comment endpoint.
\nDeletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion comment endpoint.
\nDeletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -79759,7 +79759,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -79902,7 +79902,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -80018,7 +80018,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -80152,7 +80152,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -80251,13 +80251,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -80322,20 +80322,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Get team member\" endpoint (described below) is deprecated.
\nWe recommend using the Get team membership for a user endpoint instead. It allows you to get both active and pending memberships.
\nTo list members in a team, the team must be visible to the authenticated user.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if user is a member"
+ "description": "if user is a member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if user is not a member"
+ "description": "if user is not a member
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Get team member\" endpoint (described below) is deprecated.
\nWe recommend using the Get team membership for a user endpoint instead. It allows you to get both active and pending memberships.
\nTo list members in a team, the team must be visible to the authenticated user.
"
+ ]
},
{
"verb": "put",
@@ -80398,30 +80398,30 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Add team member\" endpoint (described below) is deprecated.
\nWe recommend using the Add or update team membership for a user endpoint instead. It allows you to invite new organization members to your teams.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo add someone to a team, the authenticated user must be an organization owner or a team maintainer in the team they're changing. The person being added to the team must be a member of the team's organization.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team synchronization is set up"
+ "description": "Not Found if team synchronization is set up
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team or you attempt to add a user to a team when they are not a member of at least one other team in the same organization"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team or you attempt to add a user to a team when they are not a member of at least one other team in the same organization
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Add team member\" endpoint (described below) is deprecated.
\nWe recommend using the Add or update team membership for a user endpoint instead. It allows you to invite new organization members to your teams.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo add someone to a team, the authenticated user must be an organization owner or a team maintainer in the team they're changing. The person being added to the team must be a member of the team's organization.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -80484,20 +80484,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Remove team member\" endpoint (described below) is deprecated.
\nWe recommend using the Remove team membership for a user endpoint instead. It allows you to remove both active and pending memberships.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a team member, the authenticated user must have 'admin' permissions to the team or be an owner of the org that the team is associated with. Removing a team member does not delete the user, it just removes them from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team synchronization is setup"
+ "description": "Not Found if team synchronization is setup
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Remove team member\" endpoint (described below) is deprecated.
\nWe recommend using the Remove team membership for a user endpoint instead. It allows you to remove both active and pending memberships.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a team member, the authenticated user must have 'admin' permissions to the team or be an owner of the org that the team is associated with. Removing a team member does not delete the user, it just removes them from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
"
+ ]
},
{
"verb": "get",
@@ -80572,7 +80572,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -80691,17 +80691,17 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team
"
}
]
},
@@ -80766,20 +80766,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove team membership for a user endpoint.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "if team synchronization is set up"
+ "description": "if team synchronization is set up
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove team membership for a user endpoint.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
"
+ ]
},
{
"verb": "get",
@@ -80863,13 +80863,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -80944,13 +80944,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if project is not managed by this team"
+ "description": "Not Found if project is not managed by this team
"
}
]
},
@@ -81067,23 +81067,23 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if the project is not owned by the organization",
+ "description": "Forbidden if the project is not owned by the organization
",
"payload": "{\n \"message\": \"Must have admin rights to Repository.\",\n \"documentation_url\": \"https://docs.github.com/enterprise-server@3.2/rest/reference/teams#add-or-update-team-project-permissions\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -81146,30 +81146,30 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a project from a team endpoint.
\nRemoves an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. Note: This endpoint removes the project from the team, but does not delete it.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a project from a team endpoint.
\nRemoves an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. Note: This endpoint removes the project from the team, but does not delete it.
"
+ ]
},
{
"verb": "get",
@@ -81247,13 +81247,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -81331,18 +81331,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Alternative response with extra repository information",
+ "description": "Alternative response with extra repository information
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"maintain\": false,\n \"push\": false,\n \"triage\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"triage\": false,\n \"push\": false,\n \"maintain\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if repository is managed by this team"
+ "description": "Response if repository is managed by this team
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if repository is not managed by this team"
+ "description": "Not Found if repository is not managed by this team
"
}
]
},
@@ -81441,24 +81441,24 @@
"categoryLabel": "Teams",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new \"Add or update team repository permissions\" endpoint.
\nTo add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new \"Add or update team repository permissions\" endpoint.
\nTo add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -81544,15 +81544,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a repository from a team endpoint.
\nIf the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. NOTE: This does not delete the repository, it just removes it from the team.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a repository from a team endpoint.
\nIf the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. NOTE: This does not delete the repository, it just removes it from the team.
"
+ ]
},
{
"verb": "get",
@@ -81630,23 +81630,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if child teams exist",
+ "description": "if child teams exist
",
"payload": "[\n {\n \"id\": 2,\n \"node_id\": \"MDQ6VGVhbTI=\",\n \"url\": \"https://api.github.com/teams/2\",\n \"name\": \"Original Roster\",\n \"slug\": \"original-roster\",\n \"description\": \"Started it all.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/2/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/2/repos\",\n \"parent\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n },\n \"html_url\": \"https://github.com/orgs/rails/teams/core\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -81705,17 +81705,17 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -81934,33 +81934,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"name\": \"monalisa octocat\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"hireable\": false,\n \"bio\": \"There once was...\",\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2008-01-14T04:33:35Z\",\n \"private_gists\": 81,\n \"total_private_repos\": 100,\n \"owned_private_repos\": 100,\n \"disk_usage\": 10000,\n \"collaborators\": 8,\n \"two_factor_authentication\": true,\n \"plan\": {\n \"name\": \"Medium\",\n \"space\": 400,\n \"private_repos\": 20,\n \"collaborators\": 0\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -82030,28 +82030,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"email\": \"octocat@github.com\",\n \"verified\": true,\n \"primary\": true,\n \"visibility\": \"public\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -82168,33 +82168,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"email\": \"octocat@octocat.org\",\n \"primary\": false,\n \"verified\": false,\n \"visibility\": \"public\"\n },\n {\n \"email\": \"octocat@github.com\",\n \"primary\": false,\n \"verified\": false,\n \"visibility\": null\n },\n {\n \"email\": \"mona@github.com\",\n \"primary\": false,\n \"verified\": false,\n \"visibility\": null\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -82288,39 +82288,39 @@
"subcategoryLabel": "Emails",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "This endpoint is accessible with the user scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "This endpoint is accessible with the user scope.
",
"bodyParameters": [
{
"description": "Required. Email addresses associated with the GitHub user account.
",
@@ -82404,23 +82404,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -82490,23 +82490,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -82560,34 +82560,34 @@
"subcategoryLabel": "Followers",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if the person is followed by the authenticated user"
+ "description": "if the person is followed by the authenticated user
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if the person is not followed by the authenticated user"
+ "description": "if the person is not followed by the authenticated user
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -82638,35 +82638,35 @@
"subcategory": "followers",
"subcategoryLabel": "Followers",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nFollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nFollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
"
+ ]
},
{
"verb": "delete",
@@ -82717,35 +82717,35 @@
"subcategory": "followers",
"subcategoryLabel": "Followers",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Unfollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Unfollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
"
+ ]
},
{
"verb": "get",
@@ -82813,28 +82813,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"string\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -82918,33 +82918,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"\\\"-----BEGIN PGP PUBLIC KEY BLOCK-----\\\\nVersion: GnuPG v2\\\\n\\\\nmQENBFayYZ0BCAC4hScoJXXpyR+MXGcrBxElqw3FzCVvkViuyeko+Jp76QJhg8kr\\\\nucRTxbnOoHfda/FmilEa/wxf9ch5/PSrrL26FxEoPHhJolp8fnIDLQeITn94NYdB\\\\nZtnnEKslpPrG97qSUWIchvyqCPtvOb8+8fWvGx9K/ZWcEEdh1X8+WFR2jMENMeoX\\\\nwxHWQoPnS7LpX/85/M7VUcJxvDVfv+eHsnQupmE5bGarKNih0oMe3LbdN3qA5PTz\\\\nSCm6Iudar1VsQ+xTz08ymL7t4pnEtLguQ7EyatFHCjxNblv5RzxoL0tDgN3HqoDz\\\\nc7TEA+q4RtDQl9amcvQ95emnXmZ974u7UkYdABEBAAG0HlNvbWUgVXNlciA8c29t\\\\nZXVzZXJAZ21haWwuY29tPokBOAQTAQIAIgUCVrJhnQIbAwYLCQgHAwIGFQgCCQoL\\\\nBBYCAwECHgECF4AACgkQMmLv8lug0nAViQgArWjI55+7p48URr2z9Jvak+yrBTx1\\\\nzkufltQAnHTJkq+Kl9dySSmTnOop8o3rE4++IOpYV5Y36PkKf9EZMk4n1RQiDPKE\\\\nAFtRVTkRaoWzOir9KQXJPfhKrl01j/QzY+utfiMvUoBJZ9ybq8Pa885SljW9lbaX\\\\nIYw+hl8ZdJ2KStvGrEyfQvRyq3aN5c9TV//4BdGnwx7Qabq/U+G18lizG6f/yq15\\\\ned7t0KELaCfeKPvytp4VE9/z/Ksah/h3+Qilx07/oG2Ae5kC1bEC9coD/ogPUhbv\\\\nb2bsBIoY9E9YwsLoif2lU+o1t76zLgUktuNscRRUKobW028H1zuFS/XQhrkBDQRW\\\\nsmGdAQgApnyyv3i144OLYy0O4UKQxd3e10Y3WpDwfnGIBefAI1m7RxnUxBag/DsU\\\\n7gi9qLEC4VHSfq4eiNfr1LJOyCL2edTgCWFgBhVjbXjZe6YAOrAnhxwCErnN0Y7N\\\\n6s8wVh9fObSOyf8ZE6G7JeKpcq9Q6gd/KxagfD48a1v+fyRHpyQc6J9pUEmtrDJ7\\\\nBjmsd2VWzLBvNWdHyxDNtZweIaqIO9VUYYpr1mtTliNBOZLUelmgrt7HBRcJpWMA\\\\nS8muVVbuP5MK0trLBq/JB8qUH3zRzB/PhMgzmkIfjEK1VYDWm4E8DYyTWEJcHqkb\\\\neqFsNjrIlwPaA122BWC6gUOPwwH+oQARAQABiQEfBBgBAgAJBQJWsmGdAhsMAAoJ\\\\nEDJi7/JboNJwAyAIALd4xcdmGbZD98gScJzqwzkOMcO8zFHqHNvJ42xIFvGny7c0\\\\n1Rx7iyrdypOby5AxE+viQcjG4rpLZW/xKYBNGrCfDyQO7511I0v8x20EICMlMfD/\\\\nNrWQCzesEPcUlKTP07d+sFyP8AyseOidbzY/92CpskTgdSBjY/ntLSaoknl/fjJE\\\\nQM8OkPqU7IraO1Jzzdnm20d5PZL9+PIwIWdSTedU/vBMTJyNcoqvSfKf1wNC66XP\\\\nhqfYgXJE564AdWZKA3C0IyCqiv+LHwxLnUHio1a4/r91C8KPzxs6tGxRDjXLd7ms\\\\nuYFGWymiUGOE/giHlcxdYcHzwLnPDliMQOLiTkK5AQ0EVuxMygEIAOD+bW1cDTmE\\\\nBxh5JECoqeHuwgl6DlLhnubWPkQ4ZeRzBRAsFcEJQlwlJjrzFDicL+lnm6Qq4tt0\\\\n560TwHdf15/AKTZIZu7H25axvGNzgeaUkJEJdYAq9zTKWwX7wKyzBszi485nQg97\\\\nMfAqwhMpDW0Qqf8+7Ug+WEmfBSGv9uL3aQC6WEeIsHfri0n0n8v4XgwhfShXguxO\\\\nCsOztEsuW7WWKW9P4TngKKv4lCHdPlV6FwxeMzODBJvc2fkHVHnqc0PqszJ5xcF8\\\\n6gZCpMM027SbpeYWCAD5zwJyYP9ntfO1p2HjnQ1dZaP9FeNcO7uIV1Lnd1eGCu6I\\\\nsrVp5k1f3isAEQEAAYkCPgQYAQIACQUCVuxMygIbAgEpCRAyYu/yW6DScMBdIAQZ\\\\nAQIABgUCVuxMygAKCRCKohN4dhq2b4tcCACHxmOHVXNpu47OvUGYQydLgMACUlXN\\\\nlj+HfE0VReqShxdDmpasAY9IRpuMB2RsGK8GbNP+4SlOlAiPf5SMhS7nZNkNDgQQ\\\\naZ3HFpgrFmFwmE10BKT4iQtoxELLM57z0qGOAfTsEjWFQa4sF+6IHAQR/ptkdkkI\\\\nBUEXiMnAwVwBysLIJiLO8qdjB6qp52QkT074JVrwywT/P+DkMfC2k4r/AfEbf6eF\\\\ndmPDuPk6KD87+hJZsSa5MaMUBQVvRO/mgEkhJRITVu58eWGaBOcQJ8gqurhCqM5P\\\\nDfUA4TJ7wiqM6sS764vV1rOioTTXkszzhClQqET7hPVnVQjenYgv0EZHNyQH/1f1\\\\n/CYqvV1vFjM9vJjMbxXsATCkZe6wvBVKD8vLsJAr8N+onKQz+4OPc3kmKq7aESu3\\\\nCi/iuie5KKVwnuNhr9AzT61vEkKxwHcVFEvHB77F6ZAAInhRvjzmQbD2dlPLLQCC\\\\nqDj71ODSSAPTEmUy6969bgD9PfWei7kNkBIx7s3eBv8yzytSc2EcuUgopqFazquw\\\\nFs1+tqGHjBvQfTo6bqbJjp/9Ci2pvde3ElV2rAgUlb3lqXyXjRDqrXosh5GcRPQj\\\\nK8Nhj1BNhnrCVskE4BP0LYbOHuzgm86uXwGCFsY+w2VOsSm16Jx5GHyG5S5WU3+D\\\\nIts/HFYRLiFgDLmTlxo=\\\\n=+OzK\\\\n-----END PGP PUBLIC KEY BLOCK-----\\\"\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -83004,28 +83004,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"\\\"-----BEGIN PGP PUBLIC KEY BLOCK-----\\\\nVersion: GnuPG v2\\\\n\\\\nmQENBFayYZ0BCAC4hScoJXXpyR+MXGcrBxElqw3FzCVvkViuyeko+Jp76QJhg8kr\\\\nucRTxbnOoHfda/FmilEa/wxf9ch5/PSrrL26FxEoPHhJolp8fnIDLQeITn94NYdB\\\\nZtnnEKslpPrG97qSUWIchvyqCPtvOb8+8fWvGx9K/ZWcEEdh1X8+WFR2jMENMeoX\\\\nwxHWQoPnS7LpX/85/M7VUcJxvDVfv+eHsnQupmE5bGarKNih0oMe3LbdN3qA5PTz\\\\nSCm6Iudar1VsQ+xTz08ymL7t4pnEtLguQ7EyatFHCjxNblv5RzxoL0tDgN3HqoDz\\\\nc7TEA+q4RtDQl9amcvQ95emnXmZ974u7UkYdABEBAAG0HlNvbWUgVXNlciA8c29t\\\\nZXVzZXJAZ21haWwuY29tPokBOAQTAQIAIgUCVrJhnQIbAwYLCQgHAwIGFQgCCQoL\\\\nBBYCAwECHgECF4AACgkQMmLv8lug0nAViQgArWjI55+7p48URr2z9Jvak+yrBTx1\\\\nzkufltQAnHTJkq+Kl9dySSmTnOop8o3rE4++IOpYV5Y36PkKf9EZMk4n1RQiDPKE\\\\nAFtRVTkRaoWzOir9KQXJPfhKrl01j/QzY+utfiMvUoBJZ9ybq8Pa885SljW9lbaX\\\\nIYw+hl8ZdJ2KStvGrEyfQvRyq3aN5c9TV//4BdGnwx7Qabq/U+G18lizG6f/yq15\\\\ned7t0KELaCfeKPvytp4VE9/z/Ksah/h3+Qilx07/oG2Ae5kC1bEC9coD/ogPUhbv\\\\nb2bsBIoY9E9YwsLoif2lU+o1t76zLgUktuNscRRUKobW028H1zuFS/XQhrkBDQRW\\\\nsmGdAQgApnyyv3i144OLYy0O4UKQxd3e10Y3WpDwfnGIBefAI1m7RxnUxBag/DsU\\\\n7gi9qLEC4VHSfq4eiNfr1LJOyCL2edTgCWFgBhVjbXjZe6YAOrAnhxwCErnN0Y7N\\\\n6s8wVh9fObSOyf8ZE6G7JeKpcq9Q6gd/KxagfD48a1v+fyRHpyQc6J9pUEmtrDJ7\\\\nBjmsd2VWzLBvNWdHyxDNtZweIaqIO9VUYYpr1mtTliNBOZLUelmgrt7HBRcJpWMA\\\\nS8muVVbuP5MK0trLBq/JB8qUH3zRzB/PhMgzmkIfjEK1VYDWm4E8DYyTWEJcHqkb\\\\neqFsNjrIlwPaA122BWC6gUOPwwH+oQARAQABiQEfBBgBAgAJBQJWsmGdAhsMAAoJ\\\\nEDJi7/JboNJwAyAIALd4xcdmGbZD98gScJzqwzkOMcO8zFHqHNvJ42xIFvGny7c0\\\\n1Rx7iyrdypOby5AxE+viQcjG4rpLZW/xKYBNGrCfDyQO7511I0v8x20EICMlMfD/\\\\nNrWQCzesEPcUlKTP07d+sFyP8AyseOidbzY/92CpskTgdSBjY/ntLSaoknl/fjJE\\\\nQM8OkPqU7IraO1Jzzdnm20d5PZL9+PIwIWdSTedU/vBMTJyNcoqvSfKf1wNC66XP\\\\nhqfYgXJE564AdWZKA3C0IyCqiv+LHwxLnUHio1a4/r91C8KPzxs6tGxRDjXLd7ms\\\\nuYFGWymiUGOE/giHlcxdYcHzwLnPDliMQOLiTkK5AQ0EVuxMygEIAOD+bW1cDTmE\\\\nBxh5JECoqeHuwgl6DlLhnubWPkQ4ZeRzBRAsFcEJQlwlJjrzFDicL+lnm6Qq4tt0\\\\n560TwHdf15/AKTZIZu7H25axvGNzgeaUkJEJdYAq9zTKWwX7wKyzBszi485nQg97\\\\nMfAqwhMpDW0Qqf8+7Ug+WEmfBSGv9uL3aQC6WEeIsHfri0n0n8v4XgwhfShXguxO\\\\nCsOztEsuW7WWKW9P4TngKKv4lCHdPlV6FwxeMzODBJvc2fkHVHnqc0PqszJ5xcF8\\\\n6gZCpMM027SbpeYWCAD5zwJyYP9ntfO1p2HjnQ1dZaP9FeNcO7uIV1Lnd1eGCu6I\\\\nsrVp5k1f3isAEQEAAYkCPgQYAQIACQUCVuxMygIbAgEpCRAyYu/yW6DScMBdIAQZ\\\\nAQIABgUCVuxMygAKCRCKohN4dhq2b4tcCACHxmOHVXNpu47OvUGYQydLgMACUlXN\\\\nlj+HfE0VReqShxdDmpasAY9IRpuMB2RsGK8GbNP+4SlOlAiPf5SMhS7nZNkNDgQQ\\\\naZ3HFpgrFmFwmE10BKT4iQtoxELLM57z0qGOAfTsEjWFQa4sF+6IHAQR/ptkdkkI\\\\nBUEXiMnAwVwBysLIJiLO8qdjB6qp52QkT074JVrwywT/P+DkMfC2k4r/AfEbf6eF\\\\ndmPDuPk6KD87+hJZsSa5MaMUBQVvRO/mgEkhJRITVu58eWGaBOcQJ8gqurhCqM5P\\\\nDfUA4TJ7wiqM6sS764vV1rOioTTXkszzhClQqET7hPVnVQjenYgv0EZHNyQH/1f1\\\\n/CYqvV1vFjM9vJjMbxXsATCkZe6wvBVKD8vLsJAr8N+onKQz+4OPc3kmKq7aESu3\\\\nCi/iuie5KKVwnuNhr9AzT61vEkKxwHcVFEvHB77F6ZAAInhRvjzmQbD2dlPLLQCC\\\\nqDj71ODSSAPTEmUy6969bgD9PfWei7kNkBIx7s3eBv8yzytSc2EcuUgopqFazquw\\\\nFs1+tqGHjBvQfTo6bqbJjp/9Ci2pvde3ElV2rAgUlb3lqXyXjRDqrXosh5GcRPQj\\\\nK8Nhj1BNhnrCVskE4BP0LYbOHuzgm86uXwGCFsY+w2VOsSm16Jx5GHyG5S5WU3+D\\\\nIts/HFYRLiFgDLmTlxo=\\\\n=+OzK\\\\n-----END PGP PUBLIC KEY BLOCK-----\\\"\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -83079,40 +83079,40 @@
"subcategory": "gpg-keys",
"subcategoryLabel": "Gpg keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a GPG key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:gpg_key scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a GPG key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:gpg_key scope.
"
+ ]
},
{
"verb": "get",
@@ -83180,28 +83180,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "You can find the permissions for the installation under the `permissions` key.",
+ "description": "You can find the permissions for the installation under the permissions key.
",
"payload": "{\n \"total_count\": 2,\n \"installations\": [\n {\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"all\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n },\n {\n \"id\": 3,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"all\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -83288,23 +83288,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The access the user has to each repository is included in the hash under the `permissions` key.",
+ "description": "The access the user has to each repository is included in the hash under the permissions key.
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -83367,30 +83367,30 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Add a single repository to an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Add a single repository to an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -83451,30 +83451,30 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Remove a single repository from an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Remove a single repository from an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -83638,18 +83638,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -83719,28 +83719,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n },\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234\",\n \"id\": 3,\n \"url\": \"https://api.github.com/user/keys/3\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAB\",\n \"created_at\": \"2020-07-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -83846,33 +83846,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -83932,28 +83932,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -84007,35 +84007,35 @@
"subcategory": "keys",
"subcategoryLabel": "Keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a public SSH key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:public_key scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a public SSH key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:public_key scope.
"
+ ]
},
{
"verb": "get",
@@ -84117,28 +84117,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/orgs/octocat/memberships/defunkt\",\n \"state\": \"active\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/octocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"url\": \"https://api.github.com/orgs/invitocat/memberships/defunkt\",\n \"state\": \"pending\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/invitocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -84197,18 +84197,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/orgs/invitocat/memberships/defunkt\",\n \"state\": \"pending\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/invitocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -84311,23 +84311,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/orgs/octocat/memberships/defunkt\",\n \"state\": \"active\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/octocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -84395,23 +84395,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -84523,33 +84523,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/users/octocat\",\n \"url\": \"https://api.github.com/projects/1002603\",\n \"html_url\": \"https://github.com/users/octocat/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002603/columns\",\n \"id\": 1002603,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDM=\",\n \"name\": \"My Projects\",\n \"body\": \"A board to manage my personal projects.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -84619,28 +84619,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"email\": \"octocat@github.com\",\n \"verified\": true,\n \"primary\": true,\n \"visibility\": \"public\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -84812,22 +84812,22 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -85265,38 +85265,38 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"organization\": null,\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -85366,28 +85366,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -85442,34 +85442,34 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -85522,34 +85522,34 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -85653,17 +85653,17 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -85726,34 +85726,34 @@
"subcategoryLabel": "Starring",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if this repository is starred by you"
+ "description": "Response if this repository is starred by you
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if this repository is not starred by you"
+ "description": "Not Found if this repository is not starred by you
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -85813,35 +85813,35 @@
"subcategory": "starring",
"subcategoryLabel": "Starring",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -85902,34 +85902,34 @@
"subcategoryLabel": "Starring",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -85997,23 +85997,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -86081,23 +86081,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -86165,13 +86165,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -86240,7 +86240,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -86313,15 +86313,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "If you are authenticated as the given user, you will see your private events. Otherwise, you'll only see public events.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "If you are authenticated as the given user, you will see your private events. Otherwise, you'll only see public events.
"
+ ]
},
{
"verb": "get",
@@ -86401,15 +86401,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This is the user's organization dashboard. You must be authenticated as the user to view this.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This is the user's organization dashboard. You must be authenticated as the user to view this.
"
+ ]
},
{
"verb": "get",
@@ -86481,14 +86481,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -86565,7 +86565,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -86645,7 +86645,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -86709,19 +86709,19 @@
"subcategoryLabel": "Followers",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if the user follows the target user"
+ "description": "if the user follows the target user
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if the user does not follow the target user"
+ "description": "if the user does not follow the target user
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -86807,13 +86807,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -86892,7 +86892,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"string\"\n }\n]\n
"
}
]
@@ -86976,18 +86976,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"contexts\": [\n {\n \"message\": \"Owns this repository\",\n \"octicon\": \"repo\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -87044,7 +87044,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
}
]
@@ -87124,7 +87124,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\"\n }\n]\n
"
}
]
@@ -87202,7 +87202,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
}
]
@@ -87302,13 +87302,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/users/octocat\",\n \"url\": \"https://api.github.com/projects/1002603\",\n \"html_url\": \"https://github.com/users/octocat/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002603/columns\",\n \"id\": 1002603,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDM=\",\n \"name\": \"My Projects\",\n \"body\": \"A board to manage my personal projects.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -87381,15 +87381,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "These are events that you've received by watching repos and following users. If you are authenticated as the given user, you will see private events. Otherwise, you'll only see public events.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "These are events that you've received by watching repos and following users. If you are authenticated as the given user, you will see private events. Otherwise, you'll only see public events.
"
+ ]
},
{
"verb": "get",
@@ -87461,14 +87461,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -87596,7 +87596,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -87650,15 +87650,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -87709,15 +87709,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "You can demote any user account except your own.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "You can demote any user account except your own.
"
+ ]
},
{
"verb": "get",
@@ -87904,7 +87904,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -87980,14 +87980,14 @@
"subcategoryLabel": "Users",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, Active Directory LDAP-authenticated users cannot be suspended through this API. If you attempt to suspend an Active Directory LDAP-authenticated user through this API, it will return a 403 response.
\nYou can suspend any user account except your own.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, Active Directory LDAP-authenticated users cannot be suspended through this API. If you attempt to suspend an Active Directory LDAP-authenticated user through this API, it will return a 403 response.
\nYou can suspend any user account except your own.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -88071,14 +88071,14 @@
"subcategoryLabel": "Users",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, this API is disabled and will return a 403 response. Active Directory LDAP-authenticated users cannot be unsuspended using the API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, this API is disabled and will return a 403 response. Active Directory LDAP-authenticated users cannot be unsuspended using the API.
",
"bodyParameters": [
{
"type": "string",
@@ -88123,14 +88123,14 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get a random sentence from the Zen of GitHub
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get a random sentence from the Zen of GitHub
"
+ ]
}
]
\ No newline at end of file
diff --git a/lib/rest/static/decorated/ghes-3.3.json b/lib/rest/static/decorated/ghes-3.3.json
index 877f7893cc..81136f5167 100644
--- a/lib/rest/static/decorated/ghes-3.3.json
+++ b/lib/rest/static/decorated/ghes-3.3.json
@@ -35,15 +35,15 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get Hypermedia links to resources accessible in GitHub's REST API
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get Hypermedia links to resources accessible in GitHub's REST API
"
+ ]
},
{
"verb": "get",
@@ -122,7 +122,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\",\n \"user\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n }\n]\n
"
}
]
@@ -325,7 +325,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\",\n \"user\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n}\n
"
}
],
@@ -512,7 +512,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\",\n \"user\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n}\n
"
}
]
@@ -707,7 +707,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"form\",\n \"insecure_ssl\": \"0\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n}\n
"
}
],
@@ -891,14 +891,14 @@
"subcategoryLabel": "Global webhooks",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -960,15 +960,15 @@
"subcategory": "global-webhooks",
"subcategoryLabel": "Global webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the webhook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the webhook.
"
+ ]
},
{
"verb": "get",
@@ -1076,7 +1076,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false,\n \"last_used\": \"2020-06-11T22:31:57Z\",\n \"user_id\": 1,\n \"repository_id\": 2\n },\n {\n \"key\": \"9Og8iYjAyymI9LvABpJerYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 3,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false,\n \"last_used\": \"2020-06-11T22:31:57Z\",\n \"user_id\": 1,\n \"repository_id\": 2\n }\n]\n
"
}
]
@@ -1131,14 +1131,14 @@
"subcategoryLabel": "Users",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "patch",
@@ -1233,7 +1233,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ldap_dn\": \"cn=Enterprise Ops,ou=teams,dc=github,dc=com\",\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n}\n
"
}
]
@@ -1293,7 +1293,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"queued\"\n}\n
"
}
]
@@ -1391,7 +1391,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\",\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"name\": \"monalisa octocat\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"hireable\": false,\n \"bio\": \"There once was...\",\n \"twitter_username\": \"monatheoctocat\",\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2008-01-14T04:33:35Z\",\n \"private_gists\": 81,\n \"total_private_repos\": 100,\n \"owned_private_repos\": 100,\n \"disk_usage\": 10000,\n \"collaborators\": 8,\n \"two_factor_authentication\": true,\n \"plan\": {\n \"name\": \"Medium\",\n \"space\": 400,\n \"private_repos\": 20,\n \"collaborators\": 0\n }\n}\n
"
}
]
@@ -1451,7 +1451,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"queued\"\n}\n
"
}
]
@@ -1578,7 +1578,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n}\n
"
}
]
@@ -1676,7 +1676,7 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"message\": \"Job queued to rename organization. It may take a few minutes to complete.\",\n \"url\": \"https://<hostname>/api/v3/organizations/1\"\n}\n
"
}
]
@@ -1777,7 +1777,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"name\": \"Default\",\n \"image_url\": \"githubenterprise://internal\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/1\",\n \"default_environment\": true,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 14,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n }\n]\n
"
}
]
@@ -1885,7 +1885,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": null,\n \"message\": null\n }\n}\n
"
}
]
@@ -1945,7 +1945,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": null,\n \"message\": null\n }\n}\n
"
}
]
@@ -2054,13 +2054,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Client Errors",
+ "description": "Client Errors
",
"payload": "{\n \"message\": \"Validation Failed\",\n \"errors\": [\n {\n \"resource\": \"PreReceiveEnvironment\",\n \"code\": \"custom\",\n \"message\": \"Cannot modify or delete the default environment\"\n }\n ]\n}\n
"
}
]
@@ -2120,12 +2120,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Client Errors",
+ "description": "Client Errors
",
"payload": "{\n \"message\": \"Validation Failed\",\n \"errors\": [\n {\n \"resource\": \"PreReceiveEnvironment\",\n \"code\": \"custom\",\n \"message\": \"Cannot modify or delete the default environment\"\n }\n ]\n}\n
"
}
]
@@ -2185,13 +2185,13 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/3/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": null,\n \"message\": null\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Client Errors",
+ "description": "Client Errors
",
"payload": "{\n \"message\": \"Validation Failed\",\n \"errors\": [\n {\n \"resource\": \"PreReceiveEnvironment\",\n \"code\": \"custom\",\n \"message\": \"Can not start a new download when a download is in progress\"\n }\n ]\n}\n
"
}
]
@@ -2251,7 +2251,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/3/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n}\n
"
}
]
@@ -2353,7 +2353,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": false\n }\n]\n
"
}
]
@@ -2487,14 +2487,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": false\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -2554,6 +2546,14 @@
"rawDescription": "Whether enforcement can be overridden at the org or repo level. default: `false`",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": false\n}\n
"
+ }
]
},
{
@@ -2612,7 +2612,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": false\n}\n
"
}
]
@@ -2745,14 +2745,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 1,\n \"name\": \"Default\",\n \"image_url\": \"githubenterprise://internal\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/1\",\n \"default_environment\": true,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": true\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -2812,6 +2804,14 @@
"rawDescription": "Whether enforcement can be overridden at the org or repo level.",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"script\": \"scripts/commmit_check.sh\",\n \"script_repository\": {\n \"id\": 595,\n \"full_name\": \"DevIT/hooks\",\n \"url\": \"https://github.example.com/api/v3/repos/DevIT/hooks\",\n \"html_url\": \"https://github.example.com/DevIT/hooks\"\n },\n \"environment\": {\n \"id\": 1,\n \"name\": \"Default\",\n \"image_url\": \"githubenterprise://internal\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/1\",\n \"default_environment\": true,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n \"allow_downstream_configuration\": true\n}\n
"
+ }
]
},
{
@@ -2865,14 +2865,14 @@
"subcategoryLabel": "Pre receive hooks",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -2940,7 +2940,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 2,\n \"url\": \"https://enterprise.octocat.com/api/v3/authorizations/2\",\n \"app\": {\n \"name\": \"My personal access token\",\n \"url\": \"https://docs.github.com/enterprise/rest/reference/enterprise-admin#list-personal-access-tokens\",\n \"client_id\": \"00000000000000000000\"\n },\n \"token\": \"ghp_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"hashed_token\": \"23cffb2fab1b0a62747863eba88cb9327e561f2f7a0c8661c0d9b83146cb8d45\",\n \"token_last_eight\": \"Ae178B4a\",\n \"note\": \"My personal access token\",\n \"note_url\": null,\n \"created_at\": \"2019-04-24T21:49:02Z\",\n \"updated_at\": \"2019-04-24T21:49:02Z\",\n \"scopes\": [\n \"admin:business\",\n \"admin:gpg_key\",\n \"admin:org\",\n \"admin:org_hook\",\n \"admin:pre_receive_hook\",\n \"admin:public_key\",\n \"admin:repo_hook\",\n \"delete_repo\",\n \"gist\",\n \"notifications\",\n \"repo\",\n \"user\",\n \"write:discussion\"\n ],\n \"fingerprint\": null\n }\n]\n
"
}
]
@@ -2994,15 +2994,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a personal access token. Returns a 403 - Forbidden status when a personal access token is in use. For example, if you access this endpoint with the same personal access token that you are trying to delete, you will receive this error.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a personal access token. Returns a 403 - Forbidden status when a personal access token is in use. For example, if you access this endpoint with the same personal access token that you are trying to delete, you will receive this error.
"
+ ]
},
{
"verb": "post",
@@ -3106,7 +3106,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n}\n
"
}
]
@@ -3204,7 +3204,7 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"message\": \"Job queued to rename user. It may take a few minutes to complete.\",\n \"url\": \"https://api.github.com/user/1\"\n}\n
"
}
]
@@ -3258,15 +3258,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deleting a user will delete all their repositories, gists, applications, and personal settings. Suspending a user is often a better option.
\nYou can delete any user account except your own.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deleting a user will delete all their repositories, gists, applications, and personal settings. Suspending a user is often a better option.
\nYou can delete any user account except your own.
"
+ ]
},
{
"verb": "post",
@@ -3361,7 +3361,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
}
]
@@ -3416,14 +3416,14 @@
"subcategoryLabel": "Users",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -3468,7 +3468,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n}\n
"
}
]
@@ -3538,18 +3538,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDxOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"client_id\": \"Iv1.8a61f9b3a7aba766\",\n \"client_secret\": \"1726be1638095a19edd134c77bde3aa2ece1e5d8\",\n \"webhook_secret\": \"e340154128314309424b7c8e90325147d99fdafa\",\n \"pem\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIIEowIBAAKCAQEAuEPzOUE+kiEH1WLiMeBytTEF856j0hOVcSUSUkZxKvqczkWM\\n9vo1gDyC7ZXhdH9fKh32aapba3RSsp4ke+giSmYTk2mGR538ShSDxh0OgpJmjiKP\\nX0Bj4j5sFqfXuCtl9SkH4iueivv4R53ktqM+n6hk98l6hRwC39GVIblAh2lEM4L/\\n6WvYwuQXPMM5OG2Ryh2tDZ1WS5RKfgq+9ksNJ5Q9UtqtqHkO+E63N5OK9sbzpUUm\\noNaOl3udTlZD3A8iqwMPVxH4SxgATBPAc+bmjk6BMJ0qIzDcVGTrqrzUiywCTLma\\nszdk8GjzXtPDmuBgNn+o6s02qVGpyydgEuqmTQIDAQABAoIBACL6AvkjQVVLn8kJ\\ndBYznJJ4M8ECo+YEgaFwgAHODT0zRQCCgzd+Vxl4YwHmKV2Lr+y2s0drZt8GvYva\\nKOK8NYYZyi15IlwFyRXmvvykF1UBpSXluYFDH7KaVroWMgRreHcIys5LqVSIb6Bo\\ngDmK0yBLPp8qR29s2b7ScZRtLaqGJiX+j55rNzrZwxHkxFHyG9OG+u9IsBElcKCP\\nkYCVE8ZdYexfnKOZbgn2kZB9qu0T/Mdvki8yk3I2bI6xYO24oQmhnT36qnqWoCBX\\nNuCNsBQgpYZeZET8mEAUmo9d+ABmIHIvSs005agK8xRaP4+6jYgy6WwoejJRF5yd\\nNBuF7aECgYEA50nZ4FiZYV0vcJDxFYeY3kYOvVuKn8OyW+2rg7JIQTremIjv8FkE\\nZnwuF9ZRxgqLxUIfKKfzp/5l5LrycNoj2YKfHKnRejxRWXqG+ZETfxxlmlRns0QG\\nJ4+BYL0CoanDSeA4fuyn4Bv7cy/03TDhfg/Uq0Aeg+hhcPE/vx3ebPsCgYEAy/Pv\\neDLssOSdeyIxf0Brtocg6aPXIVaLdus+bXmLg77rJIFytAZmTTW8SkkSczWtucI3\\nFI1I6sei/8FdPzAl62/JDdlf7Wd9K7JIotY4TzT7Tm7QU7xpfLLYIP1bOFjN81rk\\n77oOD4LsXcosB/U6s1blPJMZ6AlO2EKs10UuR1cCgYBipzuJ2ADEaOz9RLWwi0AH\\nPza2Sj+c2epQD9ZivD7Zo/Sid3ZwvGeGF13JyR7kLEdmAkgsHUdu1rI7mAolXMaB\\n1pdrsHureeLxGbRM6za3tzMXWv1Il7FQWoPC8ZwXvMOR1VQDv4nzq7vbbA8z8c+c\\n57+8tALQHOTDOgQIzwK61QKBgERGVc0EJy4Uag+VY8J4m1ZQKBluqo7TfP6DQ7O8\\nM5MX73maB/7yAX8pVO39RjrhJlYACRZNMbK+v/ckEQYdJSSKmGCVe0JrGYDuPtic\\nI9+IGfSorf7KHPoMmMN6bPYQ7Gjh7a++tgRFTMEc8956Hnt4xGahy9NcglNtBpVN\\n6G8jAoGBAMCh028pdzJa/xeBHLLaVB2sc0Fe7993WlsPmnVE779dAz7qMscOtXJK\\nfgtriltLSSD6rTA9hUAsL/X62rY0wdXuNdijjBb/qvrx7CAV6i37NK1CjABNjsfG\\nZM372Ac6zc1EqSrid2IjET1YqyIW2KGLI1R2xbQc98UGlt48OdWu\\n-----END RSA PRIVATE KEY-----\\n\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -3598,7 +3598,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -3710,14 +3710,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for a GitHub App. For more information about configuring a webhook for your app, see \"Creating a GitHub App.\"
\nYou must use a JWT to access this endpoint.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -3767,6 +3759,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -3835,18 +3835,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n },\n {\n \"id\": 123456789,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-04T00:57:16Z\",\n \"redelivery\": true,\n \"duration\": 0.28,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -3905,18 +3905,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456,\n \"url\": \"https://www.example.com\",\n \"request\": {\n \"headers\": {\n \"X-GitHub-Delivery\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"X-Hub-Signature-256\": \"sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"Accept\": \"*/*\",\n \"X-GitHub-Hook-ID\": \"42\",\n \"User-Agent\": \"GitHub-Hookshot/b8c71d8\",\n \"X-GitHub-Event\": \"issues\",\n \"X-GitHub-Hook-Installation-Target-ID\": \"123\",\n \"X-GitHub-Hook-Installation-Target-Type\": \"repository\",\n \"content-type\": \"application/json\",\n \"X-Hub-Signature\": \"sha1=a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\"\n },\n \"payload\": {\n \"action\": \"opened\",\n \"issue\": {\n \"body\": \"foo\"\n },\n \"repository\": {\n \"id\": 123\n }\n }\n },\n \"response\": {\n \"headers\": {\n \"Content-Type\": \"text/html;charset=utf-8\"\n },\n \"payload\": \"ok\"\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -3969,25 +3969,25 @@
"subcategory": "webhooks",
"subcategoryLabel": "Webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Redeliver a delivery for the webhook configured for a GitHub App.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Redeliver a delivery for the webhook configured for a GitHub App.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -4073,7 +4073,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The permissions the installation has are included under the `permissions` key.",
+ "description": "The permissions the installation has are included under the permissions key.
",
"payload": "[\n {\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"selected\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n]\n
"
}
]
@@ -4132,18 +4132,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"selected\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -4195,20 +4195,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Uninstalls a GitHub App on a user, organization, or business account. If you prefer to temporarily suspend an app's access to your account's resources, then we recommend the \"Suspend an app installation\" endpoint.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Uninstalls a GitHub App on a user, organization, or business account. If you prefer to temporarily suspend an app's access to your account's resources, then we recommend the \"Suspend an app installation\" endpoint.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -5136,33 +5136,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"ghs_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"expires_at\": \"2016-07-11T22:14:10Z\",\n \"permissions\": {\n \"issues\": \"write\",\n \"contents\": \"read\"\n },\n \"repository_selection\": \"selected\",\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -6076,20 +6076,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Suspends a GitHub App on a user, organization, or business account, which blocks the app from accessing the account's resources. When a GitHub App is suspended, the app's access to the GitHub Enterprise Server API or webhook events is blocked for that account.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Suspends a GitHub App on a user, organization, or business account, which blocks the app from accessing the account's resources. When a GitHub App is suspended, the app's access to the GitHub Enterprise Server API or webhook events is blocked for that account.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -6139,20 +6139,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a GitHub App installation suspension.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a GitHub App installation suspension.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -6231,28 +6231,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"url\": \"https://api.github.com/applications/grants/1\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"scopes\": [\n \"public_repo\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -6313,23 +6313,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/applications/grants/1\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"scopes\": [\n \"public_repo\"\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -6384,30 +6384,30 @@
"category": "oauth-authorizations",
"categoryLabel": "Oauth authorizations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for your user. Once deleted, the application has no access to your account and is no longer listed on the application authorizations settings screen within GitHub.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for your user. Once deleted, the application has no access to your account and is no longer listed on the application authorizations settings screen within GitHub.
"
+ ]
},
{
"verb": "delete",
@@ -6487,19 +6487,19 @@
"subcategoryLabel": "Oauth applications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "OAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid OAuth access_token as an input parameter and the grant for the token's owner will be deleted.\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the application authorizations settings screen within GitHub.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "OAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid OAuth access_token as an input parameter and the grant for the token's owner will be deleted.\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the application authorizations settings screen within GitHub.
",
"bodyParameters": [
{
"type": "string",
@@ -6574,15 +6574,15 @@
"subcategory": "oauth-applications",
"subcategoryLabel": "Oauth applications",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.
\nOAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid token as :access_token and the grant for the token's owner will be deleted.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the Applications settings page under \"Authorized OAuth Apps\" on GitHub Enterprise Server.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.
\nOAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid token as :access_token and the grant for the token's owner will be deleted.
\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the Applications settings page under \"Authorized OAuth Apps\" on GitHub Enterprise Server.
"
+ ]
},
{
"verb": "post",
@@ -6675,18 +6675,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -6781,13 +6781,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -6869,19 +6869,19 @@
"subcategoryLabel": "Oauth applications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "OAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "OAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
",
"bodyParameters": [
{
"type": "string",
@@ -7855,28 +7855,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"installation\": {\n \"permissions\": {\n \"metadata\": \"read\",\n \"issues\": \"write\",\n \"contents\": \"read\"\n },\n \"repository_selection\": \"selected\",\n \"single_file_name\": \".github/workflow.yml\",\n \"repositories_url\": \"https://api.github.com/user/repos\",\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"has_multiple_single_files\": false,\n \"single_file_paths\": []\n }\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -8840,13 +8840,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -8918,7 +8918,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -8985,15 +8985,15 @@
"subcategory": "oauth-applications",
"subcategoryLabel": "Oauth applications",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.
\nOAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.
\nOAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
"
+ ]
},
{
"verb": "get",
@@ -9048,23 +9048,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -9145,28 +9145,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 2,\n \"url\": \"https://enterprise.octocat.com/api/v3/authorizations/2\",\n \"app\": {\n \"name\": \"My personal access token\",\n \"url\": \"https://docs.github.com/enterprise/rest/reference/enterprise-admin#list-personal-access-tokens\",\n \"client_id\": \"00000000000000000000\"\n },\n \"token\": \"ghp_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"hashed_token\": \"23cffb2fab1b0a62747863eba88cb9327e561f2f7a0c8661c0d9b83146cb8d45\",\n \"token_last_eight\": \"Ae178B4a\",\n \"note\": \"My personal access token\",\n \"note_url\": null,\n \"created_at\": \"2019-04-24T21:49:02Z\",\n \"updated_at\": \"2019-04-24T21:49:02Z\",\n \"scopes\": [\n \"admin:business\",\n \"admin:gpg_key\",\n \"admin:org\",\n \"admin:org_hook\",\n \"admin:pre_receive_hook\",\n \"admin:public_key\",\n \"admin:repo_hook\",\n \"delete_repo\",\n \"gist\",\n \"notifications\",\n \"repo\",\n \"user\",\n \"write:discussion\"\n ],\n \"fingerprint\": null\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -9360,33 +9360,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -9574,34 +9574,34 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if returning an existing token",
+ "description": "if returning an existing token
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "**Deprecation Notice:** GitHub will discontinue the [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/oauth-authorizations), which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our [web application flow](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow). The [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/oauth-authorizations) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/changes/2020-02-14-deprecating-oauth-auth-endpoint/).",
+ "description": "Deprecation Notice: GitHub will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -9780,19 +9780,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if returning an existing token",
+ "description": "if returning an existing token
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response if returning a new token",
+ "description": "Response if returning a new token
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2012-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -9853,23 +9853,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -10082,13 +10082,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -10143,30 +10143,30 @@
"category": "oauth-authorizations",
"categoryLabel": "Oauth authorizations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: GitHub Enterprise Server will discontinue the OAuth Authorizations API, which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our web application flow. The OAuth Authorizations API will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the blog post.
"
+ ]
},
{
"verb": "get",
@@ -10211,13 +10211,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"citizen_code_of_conduct\",\n \"name\": \"Citizen Code of Conduct\",\n \"url\": \"https://api.github.com/codes_of_conduct/citizen_code_of_conduct\",\n \"html_url\": \"http://citizencodeofconduct.org/\"\n },\n {\n \"key\": \"contributor_covenant\",\n \"name\": \"Contributor Covenant\",\n \"url\": \"https://api.github.com/codes_of_conduct/contributor_covenant\",\n \"html_url\": \"https://www.contributor-covenant.org/version/2/0/code_of_conduct/\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -10274,18 +10274,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"contributor_covenant\",\n \"name\": \"Contributor Covenant\",\n \"url\": \"https://api.github.com/codes_of_conduct/contributor_covenant\",\n \"body\": \"# Contributor Covenant Code of Conduct\\n\\n## Our Pledge\\n\\nIn the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.\\n\\n## Our Standards\\n\\nExamples of behavior that contributes to creating a positive environment include:\\n\\n* Using welcoming and inclusive language\\n* Being respectful of differing viewpoints and experiences\\n* Gracefully accepting constructive criticism\\n* Focusing on what is best for the community\\n* Showing empathy towards other community members\\n\\nExamples of unacceptable behavior by participants include:\\n\\n* The use of sexualized language or imagery and unwelcome sexual attention or advances\\n* Trolling, insulting/derogatory comments, and personal or political attacks\\n* Public or private harassment\\n* Publishing others' private information, such as a physical or electronic address, without explicit permission\\n* Other conduct which could reasonably be considered inappropriate in a professional setting\\n\\n## Our Responsibilities\\n\\nProject maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response\\n to any instances of unacceptable behavior.\\n\\nProject maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.\\n\\n## Scope\\n\\nThis Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address,\\n posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.\\n\\n## Enforcement\\n\\nInstances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [EMAIL]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.\\n\\nProject maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.\\n\\n## Attribution\\n\\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]\\n\\n[homepage]: http://contributor-covenant.org\\n[version]: http://contributor-covenant.org/version/1/4/\\n\",\n \"html_url\": \"http://contributor-covenant.org/version/1/4/\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -10326,20 +10326,20 @@
"category": "emojis",
"categoryLabel": "Emojis",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Lists all the emojis available to use on GitHub Enterprise Server.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Lists all the emojis available to use on GitHub Enterprise Server.
"
+ ]
},
{
"verb": "get",
@@ -10531,15 +10531,15 @@
"subcategory": "announcement",
"subcategoryLabel": "Announcement",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes the global announcement banner in your enterprise.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes the global announcement banner in your enterprise.
"
+ ]
},
{
"verb": "get",
@@ -10586,7 +10586,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"seats\": 1400,\n \"seats_used\": 1316,\n \"seats_available\": 84,\n \"kind\": \"standard\",\n \"days_until_expiration\": 365,\n \"expire_at\": \"2016/02/06 12:41:52 -0600\"\n}\n
"
}
]
@@ -10636,7 +10636,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"repos\": {\n \"total_repos\": 212,\n \"root_repos\": 194,\n \"fork_repos\": 18,\n \"org_repos\": 51,\n \"total_pushes\": 3082,\n \"total_wikis\": 15\n },\n \"hooks\": {\n \"total_hooks\": 27,\n \"active_hooks\": 23,\n \"inactive_hooks\": 4\n },\n \"pages\": {\n \"total_pages\": 36\n },\n \"orgs\": {\n \"total_orgs\": 33,\n \"disabled_orgs\": 0,\n \"total_teams\": 60,\n \"total_team_members\": 314\n },\n \"users\": {\n \"total_users\": 254,\n \"admin_users\": 45,\n \"suspended_users\": 21\n },\n \"pulls\": {\n \"total_pulls\": 86,\n \"merged_pulls\": 60,\n \"mergeable_pulls\": 21,\n \"unmergeable_pulls\": 3\n },\n \"issues\": {\n \"total_issues\": 179,\n \"open_issues\": 83,\n \"closed_issues\": 96\n },\n \"milestones\": {\n \"total_milestones\": 7,\n \"open_milestones\": 6,\n \"closed_milestones\": 1\n },\n \"gists\": {\n \"total_gists\": 178,\n \"private_gists\": 151,\n \"public_gists\": 25\n },\n \"comments\": {\n \"total_commit_comments\": 6,\n \"total_gist_comments\": 28,\n \"total_issue_comments\": 366,\n \"total_pull_request_comments\": 30\n }\n}\n
"
}
]
@@ -10681,14 +10681,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10730,14 +10730,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10778,14 +10778,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10827,14 +10827,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10876,14 +10876,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10925,14 +10925,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10974,14 +10974,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11023,14 +11023,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11071,14 +11071,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11120,14 +11120,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11185,7 +11185,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled_organizations\": \"all\",\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/enterprises/2/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -11288,14 +11288,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for organizations and allowed actions in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for organizations and allowed actions in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"type": "string",
@@ -11403,7 +11403,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"organizations\": [\n {\n \"login\": \"octocat\",\n \"id\": 161335,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"url\": \"https://api.github.com/orgs/octo-org\",\n \"repos_url\": \"https://api.github.com/orgs/octo-org/repos\",\n \"events_url\": \"https://api.github.com/orgs/octo-org/events\",\n \"hooks_url\": \"https://api.github.com/orgs/octo-org/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/octo-org/issues\",\n \"members_url\": \"https://api.github.com/orgs/octo-org/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/octo-org/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n ]\n}\n
"
}
]
@@ -11493,14 +11493,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of organization IDs to enable for GitHub Actions.
",
@@ -11577,15 +11577,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds an organization to the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds an organization to the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -11647,15 +11647,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization from the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization from the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -11713,7 +11713,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -11818,14 +11818,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"type": "boolean",
@@ -11926,7 +11926,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"runner_groups\": [\n {\n \"id\": 1,\n \"name\": \"Default\",\n \"visibility\": \"all\",\n \"default\": true,\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/1/runners\",\n \"allows_public_repositories\": false\n },\n {\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/2/runners\",\n \"allows_public_repositories\": true\n },\n {\n \"id\": 3,\n \"name\": \"expensive-hardware\",\n \"visibility\": \"private\",\n \"default\": false,\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/3/runners\",\n \"allows_public_repositories\": true\n }\n ]\n}\n
"
}
]
@@ -12132,7 +12132,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": false\n}\n
"
}
]
@@ -12203,7 +12203,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": false\n}\n
"
}
]
@@ -12358,7 +12358,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"Expensive hardware runners\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -12423,15 +12423,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a self-hosted runner group for an enterprise.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a self-hosted runner group for an enterprise.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -12519,7 +12519,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"organizations\": [\n {\n \"login\": \"octocat\",\n \"id\": 161335,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"url\": \"https://api.github.com/orgs/octo-org\",\n \"repos_url\": \"https://api.github.com/orgs/octo-org/repos\",\n \"events_url\": \"https://api.github.com/orgs/octo-org/events\",\n \"hooks_url\": \"https://api.github.com/orgs/octo-org/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/octo-org/issues\",\n \"members_url\": \"https://api.github.com/orgs/octo-org/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/octo-org/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n ]\n}\n
"
}
]
@@ -12619,14 +12619,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of organizations that have access to a self-hosted runner configured in an enterprise.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of organizations that have access to a self-hosted runner configured in an enterprise.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of organization IDs that can access the runner group.
",
@@ -12713,15 +12713,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds an organization to the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds an organization to the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -12793,15 +12793,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization from the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization from the list of selected organizations that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an enterprise.\"
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -12889,7 +12889,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -12989,14 +12989,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of self-hosted runners that are part of an enterprise runner group.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of self-hosted runners that are part of an enterprise runner group.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of runner IDs to add to the runner group.
",
@@ -13083,15 +13083,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an enterprise.
\nYou must authenticate using an access token with the manage_runners:enterprise\nscope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an enterprise.
\nYou must authenticate using an access token with the manage_runners:enterprise\nscope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -13163,15 +13163,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a self-hosted runner from a group configured in an enterprise. The runner is then returned to the default group.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a self-hosted runner from a group configured in an enterprise. The runner is then returned to the default group.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -13249,7 +13249,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -13310,7 +13310,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"os\": \"osx\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-osx-x64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-osx-x64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"f1fa173889dc9036cd529417e652e1729e5a3f4d35ec0151806d7480fda6b89b\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-x64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-x64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"02d710fc9e0008e641274bb7da7fde61f7c9aa1cbb541a2990d3450cc88f4e98\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-arm-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIyYTEzZDRmZC01ZDhkLTRjNzgtYjg2MS0zYTMxZGQ3MmYzNjQiLCJzaWQiOiI0MzZiNTg3YS04ODMyLTRiMTMtOWM2Ny05OWRkMjA2ZTQzNmMiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MzE1NzEsImV4cCI6MTYxNzkzNTc3MX0.PMhU7-MOnZRDj5k5a4ieeFlQCmKPl2pQvpVRhGZq-9ByKF5s9G0rsnGBxDcolTYlbvEAmSSkeAEwF486F7P0kMVEb-GI14WbErqqMSyaPL81c3W7UHxMJLaSBnDs9ftHMv_IkJmRzaROS8q1ObzUW-ErlltxCdj2zF_5ruK9G2RR566AOAtiA3AHV6k7-FCY5--sDYJN_YXPgpwI0fPN1TM92fdPm93hJnoXuCJNpBYp1vl5W4gwGtU_Pa07ESdqqFN1YJJHUloedNhiIOczGfGVSapRc8vyGm9P_VCM_yKD8JI-MkOXl8JI5fCfhmjmKsw-vSAh9NW67RGvmehmpw\",\n \"sha256_checksum\": \"2f2bda21e2fd8fed6938b33182a293f6b1f74e4c5d09acd6d9a0fe3f979f5c85\"\n },\n {\n \"os\": \"win\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-win-x64-2.277.1.zip\",\n \"filename\": \"actions-runner-win-x64-2.277.1.zip\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"7215c75a462eeb6a839fa8ed298d79f620617d44d47d37c583114fc3f3b27b30\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-arm64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"a6aa6dd0ba217118ef2b4ea24e9e0a85b02b13c38052a5de0776d6ced3a79c64\"\n }\n]\n
"
}
]
@@ -13371,7 +13371,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"LLBF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-22T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -13432,7 +13432,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"AABF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-29T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -13503,7 +13503,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 23,\n \"name\": \"MBP\",\n \"os\": \"macos\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
}
]
@@ -13568,15 +13568,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from an enterprise. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from an enterprise. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -13698,7 +13698,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"actor_ip\": \"88.123.45.123\",\n \"from\": \"pull_requests#merge\",\n \"device_cookie\": null,\n \"actor\": \"mona-admin\",\n \"actor_id\": 7,\n \"repo\": \"octo-org/octo-repo\",\n \"repo_id\": 17,\n \"business\": \"github\",\n \"business_id\": 1,\n \"org\": \"octo-org\",\n \"org_id\": 8,\n \"action\": \"pull_request.merge\",\n \"@timestamp\": 1635940599755,\n \"created_at\": 1635940599755,\n \"operation_type\": \"modify\",\n \"actor_location\": {\n \"country_code\": \"GB\",\n \"country_name\": \"United Kingdom\",\n \"region\": \"ENG\",\n \"region_name\": \"England\",\n \"city\": \"Louth\",\n \"postal_code\": \"LN11\",\n \"location\": {\n \"lat\": 53.4457,\n \"lon\": 0.141\n }\n },\n \"data\": {\n \"user_agent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) ...\",\n \"method\": \"POST\",\n \"request_id\": \"e4dabc4d-ba16-4bca-1234-649be7ae1188\",\n \"server_id\": \"5d17aab5-fd9f-abcd-a820-16bed246441b\",\n \"request_category\": \"other\",\n \"controller_action\": \"merge\",\n \"url\": \"https://example.com/octo-org/octo-repo/pull/1/merge\",\n \"client_id\": 322299977.1635936,\n \"referrer\": \"https://example.com/octo-org/octo-repo/pull/1\",\n \"actor_session\": 1,\n \"pull_request_id\": 1,\n \"category_type\": \"Resource Management\"\n }\n },\n {\n \"actor_ip\": \"88.123.45.123\",\n \"from\": \"pull_request_review_events#create\",\n \"device_cookie\": null,\n \"actor\": \"mona-admin\",\n \"actor_id\": 7,\n \"business_id\": 1,\n \"org_id\": 8,\n \"action\": \"pull_request_review.submit\",\n \"@timestamp\": 1635940593079,\n \"created_at\": 1635940593079,\n \"operation_type\": \"modify\",\n \"actor_location\": {\n \"country_code\": \"GB\",\n \"country_name\": \"United Kingdom\",\n \"region\": \"ENG\",\n \"region_name\": \"England\",\n \"city\": \"Louth\",\n \"postal_code\": \"LN11\",\n \"location\": {\n \"lat\": 53.4457,\n \"lon\": 0.141\n }\n },\n \"data\": {\n \"user_agent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) ...\",\n \"method\": \"PUT\",\n \"request_id\": \"c0f63bb7-17b6-4796-940c-12345c5a581b\",\n \"server_id\": \"2abc1234-f651-43e3-9696-e942ad5f8c89\",\n \"request_category\": \"other\",\n \"controller_action\": \"create\",\n \"url\": \"https://example.com/octo-org/octo-repo/pull/1/reviews\",\n \"client_id\": 322299977.1635936,\n \"referrer\": \"https://example.com/octo-org/octo-repo/pull/1/files\",\n \"actor_session\": 1,\n \"spammy\": false,\n \"pull_request_id\": 1,\n \"body\": null,\n \"allowed\": true,\n \"id\": 1,\n \"state\": 40,\n \"issue_id\": 1,\n \"review_id\": 1,\n \"category_type\": \"Resource Management\"\n }\n },\n {\n \"actor_ip\": \"88.123.45.123\",\n \"from\": \"pull_requests#create\",\n \"device_cookie\": null,\n \"actor\": \"mona\",\n \"actor_id\": 9,\n \"user_id\": 9,\n \"repo\": \"octo-org/octo-repo\",\n \"repo_id\": 17,\n \"business\": \"github\",\n \"business_id\": 1,\n \"org\": \"octo-org\",\n \"org_id\": 8,\n \"action\": \"pull_request.create\",\n \"@timestamp\": 1635940554161,\n \"created_at\": 1635940554161,\n \"operation_type\": \"create\",\n \"actor_location\": {\n \"country_code\": \"GB\",\n \"country_name\": \"United Kingdom\",\n \"region\": \"ENG\",\n \"region_name\": \"England\",\n \"city\": \"Louth\",\n \"postal_code\": \"LN11\",\n \"location\": {\n \"lat\": 53.4457,\n \"lon\": 0.141\n }\n },\n \"data\": {\n \"user_agent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) ...\",\n \"method\": \"POST\",\n \"request_id\": \"2773abeb-477f-4ebf-a017-f8e8a206c305\",\n \"server_id\": \"796e3115-4ce8-4606-8fd0-99ea57a2e12b\",\n \"request_category\": \"other\",\n \"controller_action\": \"create\",\n \"url\": \"https://example.com/octo-org/octo-repo/pull/create?base=octo-org%3Amain&head=mona%3Apatch-1\",\n \"client_id\": 386351111.163594,\n \"referrer\": \"https://example.com/octo-org/octo-repo/compare/main...mona:patch-1\",\n \"actor_session\": 2,\n \"pull_request_id\": 1,\n \"category_type\": \"Resource Management\"\n }\n }\n]\n
"
}
]
@@ -13763,30 +13763,30 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "We delay the public events feed by five minutes, which means the most recent event returned by the public events API actually occurred at least five minutes ago.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "We delay the public events feed by five minutes, which means the most recent event returned by the public events API actually occurred at least five minutes ago.
"
+ ]
},
{
"verb": "get",
@@ -13833,7 +13833,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"timeline_url\": \"https://github.com/timeline\",\n \"user_url\": \"https://github.com/{user}\",\n \"current_user_public_url\": \"https://github.com/octocat\",\n \"current_user_url\": \"https://github.com/octocat.private?token=abc123\",\n \"current_user_actor_url\": \"https://github.com/octocat.private.actor?token=abc123\",\n \"current_user_organization_url\": \"\",\n \"current_user_organization_urls\": [\n \"https://github.com/organizations/github/octocat.private.atom?token=abc123\"\n ],\n \"security_advisories_url\": \"https://github.com/security-advisories\",\n \"_links\": {\n \"timeline\": {\n \"href\": \"https://github.com/timeline\",\n \"type\": \"application/atom+xml\"\n },\n \"user\": {\n \"href\": \"https://github.com/{user}\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_public\": {\n \"href\": \"https://github.com/octocat\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user\": {\n \"href\": \"https://github.com/octocat.private?token=abc123\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_actor\": {\n \"href\": \"https://github.com/octocat.private.actor?token=abc123\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_organization\": {\n \"href\": \"\",\n \"type\": \"\"\n },\n \"current_user_organizations\": [\n {\n \"href\": \"https://github.com/organizations/github/octocat.private.atom?token=abc123\",\n \"type\": \"application/atom+xml\"\n }\n ]\n }\n}\n
"
}
]
@@ -13913,18 +13913,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -14043,34 +14043,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Allows you to add a new gist with one or more files.
\nNote: Don't name your files \"gistfile\" with a numerical suffix. This is the format of the automatic naming scheme that Gist uses internally.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
- },
- {
- "httpStatusCode": "304",
- "httpStatusMessage": "Not Modified",
- "description": "Not modified"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"description": "Description of the gist
",
@@ -14133,6 +14105,34 @@
"type": "boolean or string",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "304",
+ "httpStatusMessage": "Not Modified",
+ "description": "Not modified
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -14210,23 +14210,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -14305,23 +14305,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -14379,23 +14379,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden Gist"
+ "description": "Forbidden Gist
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -14530,24 +14530,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Allows you to update or delete a gist file and rename gist files. Files from the previous version of the gist that aren't explicitly changed during an edit are unchanged.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"description": "Description of the gist
",
@@ -14605,6 +14587,24 @@
"rawDescription": "Names of files to be updated",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -14656,29 +14656,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -14756,23 +14756,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -14871,23 +14871,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -14957,23 +14957,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden Gist"
+ "description": "Forbidden Gist
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -15082,13 +15082,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -15153,29 +15153,29 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -15251,23 +15251,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/57a7f021a713b1c5a6a199b54cc514735d2d462f\",\n \"version\": \"57a7f021a713b1c5a6a199b54cc514735d2d462f\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"change_status\": {\n \"deletions\": 0,\n \"additions\": 180,\n \"total\": 180\n },\n \"committed_at\": \"2010-04-14T02:15:15Z\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -15345,23 +15345,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 1,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -15419,28 +15419,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -15493,29 +15493,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if gist is starred"
+ "description": "Response if gist is starred
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if gist is not starred"
+ "description": "Not Found if gist is not starred
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -15565,30 +15565,30 @@
"category": "gists",
"categoryLabel": "Gists",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -15639,29 +15639,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -15726,23 +15726,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -15789,13 +15789,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"Actionscript\",\n \"Android\",\n \"AppceleratorTitanium\",\n \"Autotools\",\n \"Bancha\",\n \"C\",\n \"C++\"\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -15852,13 +15852,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"C\",\n \"source\": \"# Object files\\n*.o\\n\\n# Libraries\\n*.lib\\n*.a\\n\\n# Shared objects (inc. Windows DLLs)\\n*.dll\\n*.so\\n*.so.*\\n*.dylib\\n\\n# Executables\\n*.exe\\n*.out\\n*.app\\n\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -15928,23 +15928,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -15987,15 +15987,15 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Revokes the installation token you're using to authenticate as an installation and access this endpoint.
\nOnce an installation token is revoked, the token is invalidated and cannot be used. Other endpoints that require the revoked installation token must have a new installation token to work. You can create a new token using the \"Create an installation access token for an app\" endpoint.
\nYou must use an installation access token to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Revokes the installation token you're using to authenticate as an installation and access this endpoint.
\nOnce an installation token is revoked, the token is invalidated and cannot be used. Other endpoints that require the revoked installation token must have a new installation token to work. You can create a new token using the \"Create an installation access token for an app\" endpoint.
\nYou must use an installation access token to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -16184,23 +16184,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -16277,13 +16277,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"lgpl-3.0\",\n \"name\": \"GNU Lesser General Public License v3.0\",\n \"spdx_id\": \"LGPL-3.0\",\n \"url\": \"https://api.github.com/licenses/lgpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"mpl-2.0\",\n \"name\": \"Mozilla Public License 2.0\",\n \"spdx_id\": \"MPL-2.0\",\n \"url\": \"https://api.github.com/licenses/mpl-2.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"agpl-3.0\",\n \"name\": \"GNU Affero General Public License v3.0\",\n \"spdx_id\": \"AGPL-3.0\",\n \"url\": \"https://api.github.com/licenses/agpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"unlicense\",\n \"name\": \"The Unlicense\",\n \"spdx_id\": \"Unlicense\",\n \"url\": \"https://api.github.com/licenses/unlicense\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"apache-2.0\",\n \"name\": \"Apache License 2.0\",\n \"spdx_id\": \"Apache-2.0\",\n \"url\": \"https://api.github.com/licenses/apache-2.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"gpl-3.0\",\n \"name\": \"GNU General Public License v3.0\",\n \"spdx_id\": \"GPL-3.0\",\n \"url\": \"https://api.github.com/licenses/gpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -16340,23 +16340,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"http://choosealicense.com/licenses/mit/\",\n \"description\": \"A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty.\",\n \"implementation\": \"Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders.\",\n \"permissions\": [\n \"commercial-use\",\n \"modifications\",\n \"distribution\",\n \"sublicense\",\n \"private-use\"\n ],\n \"conditions\": [\n \"include-copyright\"\n ],\n \"limitations\": [\n \"no-liability\"\n ],\n \"body\": \"\\n\\nThe MIT License (MIT)\\n\\nCopyright (c) [year] [fullname]\\n\\nPermission is hereby granted, free of charge, to any person obtaining a copy\\nof this software and associated documentation files (the \\\"Software\\\"), to deal\\nin the Software without restriction, including without limitation the rights\\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\\ncopies of the Software, and to permit persons to whom the Software is\\nfurnished to do so, subject to the following conditions:\\n\\nThe above copyright notice and this permission notice shall be included in all\\ncopies or substantial portions of the Software.\\n\\nTHE SOFTWARE IS PROVIDED \\\"AS IS\\\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\\nSOFTWARE.\\n\",\n \"featured\": true\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -16451,12 +16451,12 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
],
"bodyParameters": [
@@ -16548,20 +16548,20 @@
"categoryLabel": "Markdown",
"contentType": "text/plain",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "You must send Markdown as plain text (using a Content-Type header of text/plain or text/x-markdown) to this endpoint, rather than using JSON format. In raw mode, GitHub Flavored Markdown is not supported and Markdown will be rendered in plain format like a README.md file. Markdown content must be 400 KB or less.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "You must send Markdown as plain text (using a Content-Type header of text/plain or text/x-markdown) to this endpoint, rather than using JSON format. In raw mode, GitHub Flavored Markdown is not supported and Markdown will be rendered in plain format like a README.md file. Markdown content must be 400 KB or less.
"
+ ]
},
{
"verb": "get",
@@ -16606,13 +16606,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"verifiable_password_authentication\": true,\n \"packages\": [\n \"192.30.252.0/22\"\n ],\n \"dependabot\": [\n \"54.158.161.132\"\n ],\n \"installed_version\": \"3.3.0\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -16695,34 +16695,34 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -16834,28 +16834,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -16930,34 +16930,34 @@
"subcategoryLabel": "Notifications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Marks all notifications as \"read\" removes it from the default view on GitHub Enterprise Server. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub Enterprise Server will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
],
- "descriptionHTML": "Marks all notifications as \"read\" removes it from the default view on GitHub Enterprise Server. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub Enterprise Server will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"bodyParameters": [
{
"description": "Describes the last point that notifications were checked.
",
@@ -17036,23 +17036,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -17107,24 +17107,24 @@
"subcategoryLabel": "Notifications",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -17182,23 +17182,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/notifications/threads/1/subscription\",\n \"thread_url\": \"https://api.github.com/notifications/threads/1\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -17292,23 +17292,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/notifications/threads/1/subscription\",\n \"thread_url\": \"https://api.github.com/notifications/threads/1\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -17362,30 +17362,30 @@
"subcategory": "notifications",
"subcategoryLabel": "Notifications",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Mutes all future notifications for a conversation until you comment on the thread or get an @mention. If you are watching the repository of the thread, you will still receive notifications. To ignore future notifications for a repository you are watching, use the Set a thread subscription endpoint and set ignore to true.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Mutes all future notifications for a conversation until you comment on the thread or get an @mention. If you are watching the repository of the thread, you will still receive notifications. To ignore future notifications for a repository you are watching, use the Set a thread subscription endpoint and set ignore to true.
"
+ ]
},
{
"verb": "get",
@@ -17434,15 +17434,15 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get the octocat as ASCII art
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get the octocat as ASCII art
"
+ ]
},
{
"verb": "get",
@@ -17508,13 +17508,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -17577,7 +17577,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -18014,18 +18014,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"twitter_username\": \"github\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"type\": \"Organization\",\n \"total_private_repos\": 100,\n \"owned_private_repos\": 100,\n \"private_gists\": 81,\n \"disk_usage\": 10000,\n \"collaborators\": 8,\n \"billing_email\": \"mona@github.com\",\n \"plan\": {\n \"name\": \"Medium\",\n \"space\": 400,\n \"private_repos\": 20\n },\n \"default_repository_permission\": \"read\",\n \"members_can_create_repositories\": true,\n \"two_factor_requirement_enabled\": true,\n \"members_allowed_repository_creation_type\": \"all\",\n \"members_can_create_public_repositories\": false,\n \"members_can_create_private_repositories\": false,\n \"members_can_create_internal_repositories\": false,\n \"members_can_create_pages\": true,\n \"members_can_create_public_pages\": true,\n \"members_can_create_private_pages\": true,\n \"members_can_fork_private_repositories\": false,\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -18084,7 +18084,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled_repositories\": \"all\",\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/organizations/42/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -18186,14 +18186,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for repositories and allowed actions in an organization.
\nIf the organization belongs to an enterprise that has set restrictive permissions at the enterprise level, such as allowed_actions to selected actions, then you cannot override them for the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for repositories and allowed actions in an organization.
\nIf the organization belongs to an enterprise that has set restrictive permissions at the enterprise level, such as allowed_actions to selected actions, then you cannot override them for the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"type": "string",
@@ -18300,7 +18300,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
}
]
@@ -18389,14 +18389,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"description": "Required. List of repository IDs to enable for GitHub Actions.
",
@@ -18471,15 +18471,15 @@
"subcategory": "permissions",
"subcategoryLabel": "Permissions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
"
+ ]
},
{
"verb": "delete",
@@ -18539,15 +18539,15 @@
"subcategory": "permissions",
"subcategoryLabel": "Permissions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
"
+ ]
},
{
"verb": "get",
@@ -18604,7 +18604,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -18708,14 +18708,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in an organization. To use this endpoint, the organization permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nIf the organization belongs to an enterprise that has selected actions set at the enterprise level, then you cannot override any of the enterprise's allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the organization must belong to an enterprise. If the organization does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories in the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in an organization. To use this endpoint, the organization permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nIf the organization belongs to an enterprise that has selected actions set at the enterprise level, then you cannot override any of the enterprise's allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the organization must belong to an enterprise. If the organization does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories in the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -18815,7 +18815,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"runner_groups\": [\n {\n \"id\": 1,\n \"name\": \"Default\",\n \"visibility\": \"all\",\n \"default\": true,\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/1/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n },\n {\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": true,\n \"allows_public_repositories\": true\n },\n {\n \"id\": 3,\n \"name\": \"expensive-hardware\",\n \"visibility\": \"private\",\n \"default\": false,\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/3/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n }\n ]\n}\n
"
}
]
@@ -19024,7 +19024,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner-groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -19094,7 +19094,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -19251,7 +19251,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner-groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -19315,15 +19315,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a self-hosted runner group for an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a self-hosted runner group for an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -19410,7 +19410,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"organization\": null,\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
}
]
@@ -19509,14 +19509,14 @@
"subcategoryLabel": "Self hosted runner groups",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of repositories that have access to a self-hosted runner group configured in an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of repositories that have access to a self-hosted runner group configured in an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of repository IDs that can access the runner group.
",
@@ -19601,15 +19601,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -19679,15 +19679,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from the list of selected repositories that can access a self-hosted runner group. The runner group must have visibility set to selected. For more information, see \"Create a self-hosted runner group for an organization.\"\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -19774,7 +19774,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -19873,14 +19873,14 @@
"subcategoryLabel": "Self hosted runner groups",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of self-hosted runners that are part of an organization runner group.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of self-hosted runners that are part of an organization runner group.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of runner IDs to add to the runner group.
",
@@ -19966,15 +19966,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an organization.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -20045,15 +20045,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a self-hosted runner from a group configured in an organization. The runner is then returned to the default group.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a self-hosted runner from a group configured in an organization. The runner is then returned to the default group.\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -20130,7 +20130,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -20190,7 +20190,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"os\": \"osx\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-osx-x64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-osx-x64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"f1fa173889dc9036cd529417e652e1729e5a3f4d35ec0151806d7480fda6b89b\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-x64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-x64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"02d710fc9e0008e641274bb7da7fde61f7c9aa1cbb541a2990d3450cc88f4e98\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-arm-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIyYTEzZDRmZC01ZDhkLTRjNzgtYjg2MS0zYTMxZGQ3MmYzNjQiLCJzaWQiOiI0MzZiNTg3YS04ODMyLTRiMTMtOWM2Ny05OWRkMjA2ZTQzNmMiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MzE1NzEsImV4cCI6MTYxNzkzNTc3MX0.PMhU7-MOnZRDj5k5a4ieeFlQCmKPl2pQvpVRhGZq-9ByKF5s9G0rsnGBxDcolTYlbvEAmSSkeAEwF486F7P0kMVEb-GI14WbErqqMSyaPL81c3W7UHxMJLaSBnDs9ftHMv_IkJmRzaROS8q1ObzUW-ErlltxCdj2zF_5ruK9G2RR566AOAtiA3AHV6k7-FCY5--sDYJN_YXPgpwI0fPN1TM92fdPm93hJnoXuCJNpBYp1vl5W4gwGtU_Pa07ESdqqFN1YJJHUloedNhiIOczGfGVSapRc8vyGm9P_VCM_yKD8JI-MkOXl8JI5fCfhmjmKsw-vSAh9NW67RGvmehmpw\",\n \"sha256_checksum\": \"2f2bda21e2fd8fed6938b33182a293f6b1f74e4c5d09acd6d9a0fe3f979f5c85\"\n },\n {\n \"os\": \"win\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-win-x64-2.277.1.zip\",\n \"filename\": \"actions-runner-win-x64-2.277.1.zip\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"7215c75a462eeb6a839fa8ed298d79f620617d44d47d37c583114fc3f3b27b30\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-arm64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"a6aa6dd0ba217118ef2b4ea24e9e0a85b02b13c38052a5de0776d6ced3a79c64\"\n }\n]\n
"
}
]
@@ -20250,7 +20250,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"LLBF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-22T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -20310,7 +20310,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"AABF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-29T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -20380,7 +20380,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 23,\n \"name\": \"MBP\",\n \"os\": \"macos\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
}
]
@@ -20444,15 +20444,15 @@
"subcategory": "self-hosted-runners",
"subcategoryLabel": "Self hosted runners",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from an organization. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from an organization. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -20529,7 +20529,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"secrets\": [\n {\n \"name\": \"GIST_ID\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"private\"\n },\n {\n \"name\": \"DEPLOY_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"all\"\n },\n {\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"selected\",\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories\"\n }\n ]\n}\n
"
}
]
@@ -20589,7 +20589,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -20659,7 +20659,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"selected\",\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories\"\n}\n
"
}
]
@@ -20702,7 +20702,7 @@
}
],
"summary": "Create or update an organization secret",
- "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -20797,15 +20797,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to\nuse this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to\nuse this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -20913,15 +20913,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in an organization using the secret name. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in an organization using the secret name. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -21008,7 +21008,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n }\n ]\n}\n
"
}
]
@@ -21105,14 +21105,14 @@
"subcategoryLabel": "Secrets",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces all repositories for an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces all repositories for an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"bodyParameters": [
{
"type": "array of integers",
@@ -21196,20 +21196,20 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "No Content when repository was added to the selected list"
+ "description": "No Content when repository was added to the selected list
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when visibility type is not set to selected"
+ "description": "Conflict when visibility type is not set to selected
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -21279,20 +21279,20 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when repository was removed from the selected list"
+ "description": "Response when repository was removed from the selected list
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when visibility type not set to selected"
+ "description": "Conflict when visibility type not set to selected
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -21411,7 +21411,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"actor_ip\": \"88.123.45.123\",\n \"from\": \"pull_requests#merge\",\n \"device_cookie\": null,\n \"actor\": \"mona-admin\",\n \"actor_id\": 7,\n \"repo\": \"octo-org/octo-repo\",\n \"repo_id\": 17,\n \"business\": \"github\",\n \"business_id\": 1,\n \"org\": \"octo-org\",\n \"org_id\": 8,\n \"action\": \"pull_request.merge\",\n \"@timestamp\": 1635940599755,\n \"created_at\": 1635940599755,\n \"operation_type\": \"modify\",\n \"actor_location\": {\n \"country_code\": \"GB\",\n \"country_name\": \"United Kingdom\",\n \"region\": \"ENG\",\n \"region_name\": \"England\",\n \"city\": \"Louth\",\n \"postal_code\": \"LN11\",\n \"location\": {\n \"lat\": 53.4457,\n \"lon\": 0.141\n }\n },\n \"data\": {\n \"user_agent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) ...\",\n \"method\": \"POST\",\n \"request_id\": \"e4dabc4d-ba16-4bca-1234-649be7ae1188\",\n \"server_id\": \"5d17aab5-fd9f-abcd-a820-16bed246441b\",\n \"request_category\": \"other\",\n \"controller_action\": \"merge\",\n \"url\": \"https://example.com/octo-org/octo-repo/pull/1/merge\",\n \"client_id\": 322299977.1635936,\n \"referrer\": \"https://example.com/octo-org/octo-repo/pull/1\",\n \"actor_session\": 1,\n \"pull_request_id\": 1,\n \"category_type\": \"Resource Management\"\n }\n },\n {\n \"actor_ip\": \"88.123.45.123\",\n \"from\": \"pull_request_review_events#create\",\n \"device_cookie\": null,\n \"actor\": \"mona-admin\",\n \"actor_id\": 7,\n \"business_id\": 1,\n \"org_id\": 8,\n \"action\": \"pull_request_review.submit\",\n \"@timestamp\": 1635940593079,\n \"created_at\": 1635940593079,\n \"operation_type\": \"modify\",\n \"actor_location\": {\n \"country_code\": \"GB\",\n \"country_name\": \"United Kingdom\",\n \"region\": \"ENG\",\n \"region_name\": \"England\",\n \"city\": \"Louth\",\n \"postal_code\": \"LN11\",\n \"location\": {\n \"lat\": 53.4457,\n \"lon\": 0.141\n }\n },\n \"data\": {\n \"user_agent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) ...\",\n \"method\": \"PUT\",\n \"request_id\": \"c0f63bb7-17b6-4796-940c-12345c5a581b\",\n \"server_id\": \"2abc1234-f651-43e3-9696-e942ad5f8c89\",\n \"request_category\": \"other\",\n \"controller_action\": \"create\",\n \"url\": \"https://example.com/octo-org/octo-repo/pull/1/reviews\",\n \"client_id\": 322299977.1635936,\n \"referrer\": \"https://example.com/octo-org/octo-repo/pull/1/files\",\n \"actor_session\": 1,\n \"spammy\": false,\n \"pull_request_id\": 1,\n \"body\": null,\n \"allowed\": true,\n \"id\": 1,\n \"state\": 40,\n \"issue_id\": 1,\n \"review_id\": 1,\n \"category_type\": \"Resource Management\"\n }\n },\n {\n \"actor_ip\": \"88.123.45.123\",\n \"from\": \"pull_requests#create\",\n \"device_cookie\": null,\n \"actor\": \"mona\",\n \"actor_id\": 9,\n \"user_id\": 9,\n \"repo\": \"octo-org/octo-repo\",\n \"repo_id\": 17,\n \"business\": \"github\",\n \"business_id\": 1,\n \"org\": \"octo-org\",\n \"org_id\": 8,\n \"action\": \"pull_request.create\",\n \"@timestamp\": 1635940554161,\n \"created_at\": 1635940554161,\n \"operation_type\": \"create\",\n \"actor_location\": {\n \"country_code\": \"GB\",\n \"country_name\": \"United Kingdom\",\n \"region\": \"ENG\",\n \"region_name\": \"England\",\n \"city\": \"Louth\",\n \"postal_code\": \"LN11\",\n \"location\": {\n \"lat\": 53.4457,\n \"lon\": 0.141\n }\n },\n \"data\": {\n \"user_agent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) ...\",\n \"method\": \"POST\",\n \"request_id\": \"2773abeb-477f-4ebf-a017-f8e8a206c305\",\n \"server_id\": \"796e3115-4ce8-4606-8fd0-99ea57a2e12b\",\n \"request_category\": \"other\",\n \"controller_action\": \"create\",\n \"url\": \"https://example.com/octo-org/octo-repo/pull/create?base=octo-org%3Amain&head=mona%3Apatch-1\",\n \"client_id\": 386351111.163594,\n \"referrer\": \"https://example.com/octo-org/octo-repo/compare/main...mona:patch-1\",\n \"actor_session\": 2,\n \"pull_request_id\": 1,\n \"category_type\": \"Resource Management\"\n }\n }\n]\n
"
}
]
@@ -21486,14 +21486,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -21570,13 +21570,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"deliveries_url\": \"https://api.github.com/orgs/octocat/hooks/1/deliveries\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -21851,18 +21851,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"deliveries_url\": \"https://api.github.com/orgs/octocat/hooks/1/deliveries\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -22120,13 +22120,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"deliveries_url\": \"https://api.github.com/orgs/octocat/hooks/1/deliveries\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -22364,18 +22364,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"name\": \"web\",\n \"events\": [\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -22592,19 +22592,19 @@
"subcategoryLabel": "Webhooks",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -22670,7 +22670,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -22802,14 +22802,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for an organization. To update more information about the webhook, including the active state and events, use \"Update an organization webhook .\"
\nAccess tokens must have the admin:org_hook scope, and GitHub Apps must have the organization_hooks:write permission.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -22859,6 +22851,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -22945,18 +22945,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n },\n {\n \"id\": 123456789,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-04T00:57:16Z\",\n \"redelivery\": true,\n \"duration\": 0.28,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -23033,18 +23033,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456,\n \"url\": \"https://www.example.com\",\n \"request\": {\n \"headers\": {\n \"X-GitHub-Delivery\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"X-Hub-Signature-256\": \"sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"Accept\": \"*/*\",\n \"X-GitHub-Hook-ID\": \"42\",\n \"User-Agent\": \"GitHub-Hookshot/b8c71d8\",\n \"X-GitHub-Event\": \"issues\",\n \"X-GitHub-Hook-Installation-Target-ID\": \"123\",\n \"X-GitHub-Hook-Installation-Target-Type\": \"repository\",\n \"content-type\": \"application/json\",\n \"X-Hub-Signature\": \"sha1=a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\"\n },\n \"payload\": {\n \"action\": \"opened\",\n \"issue\": {\n \"body\": \"foo\"\n },\n \"repository\": {\n \"id\": 123\n }\n }\n },\n \"response\": {\n \"headers\": {\n \"Content-Type\": \"text/html;charset=utf-8\"\n },\n \"payload\": \"ok\"\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -23115,25 +23115,25 @@
"subcategory": "webhooks",
"subcategoryLabel": "Webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Redeliver a delivery for a webhook configured in an organization.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Redeliver a delivery for a webhook configured in an organization.
"
+ ]
},
{
"verb": "post",
@@ -23193,20 +23193,20 @@
"subcategory": "webhooks",
"subcategoryLabel": "Webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the hook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the hook.
"
+ ]
},
{
"verb": "get",
@@ -23261,7 +23261,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
}
]
@@ -23339,7 +23339,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"installations\": [\n {\n \"id\": 25381,\n \"account\": {\n \"login\": \"octo-org\",\n \"id\": 6811672,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjY4MTE2NzI=\",\n \"avatar_url\": \"https://avatars3.githubusercontent.com/u/6811672?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octo-org\",\n \"html_url\": \"https://github.com/octo-org\",\n \"followers_url\": \"https://api.github.com/users/octo-org/followers\",\n \"following_url\": \"https://api.github.com/users/octo-org/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octo-org/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octo-org/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octo-org/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octo-org/orgs\",\n \"repos_url\": \"https://api.github.com/users/octo-org/repos\",\n \"events_url\": \"https://api.github.com/users/octo-org/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octo-org/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"selected\",\n \"access_tokens_url\": \"https://api.github.com/app/installations/25381/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/octo-org/settings/installations/25381\",\n \"app_id\": 2218,\n \"target_id\": 6811672,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"deployments\": \"write\",\n \"metadata\": \"read\",\n \"pull_requests\": \"read\",\n \"statuses\": \"read\"\n },\n \"events\": [\n \"deployment\",\n \"deployment_status\"\n ],\n \"created_at\": \"2017-05-16T08:47:09.000-07:00\",\n \"updated_at\": \"2017-06-06T11:23:23.000-07:00\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n ]\n}\n
"
}
]
@@ -23504,13 +23504,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -23620,18 +23620,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response if requester is not an organization member"
+ "description": "Response if requester is not an organization member
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -23693,25 +23693,25 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Check if a user is, publicly or privately, a member of the organization.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if requester is an organization member and user is a member"
+ "description": "Response if requester is an organization member and user is a member
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response if requester is not an organization member"
+ "description": "Response if requester is not an organization member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if requester is an organization member and user is not a member"
+ "description": "Not Found if requester is an organization member and user is not a member
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Check if a user is, publicly or privately, a member of the organization.
"
+ ]
},
{
"verb": "delete",
@@ -23771,20 +23771,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removing a user from this list will remove them from all teams and they will no longer have any access to the organization's repositories.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removing a user from this list will remove them from all teams and they will no longer have any access to the organization's repositories.
"
+ ]
},
{
"verb": "get",
@@ -23856,12 +23856,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -23977,12 +23977,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -24044,25 +24044,25 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "In order to remove a user's membership with an organization, the authenticated user must be an organization owner.
\nIf the specified user is an active member of the organization, this will remove them from the organization. If the specified user has been invited to the organization, this will cancel their invitation. The specified user will receive an email notification in both cases.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "In order to remove a user's membership with an organization, the authenticated user must be an organization owner.
\nIf the specified user is an active member of the organization, this will remove them from the organization. If the specified user has been invited to the organization, this will cancel their invitation. The specified user will receive an email notification in both cases.
"
+ ]
},
{
"verb": "get",
@@ -24154,7 +24154,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -24217,30 +24217,30 @@
"subcategory": "outside-collaborators",
"subcategoryLabel": "Outside collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "When an organization member is converted to an outside collaborator, they'll only have access to the repositories that their current team membership allows. The user will no longer be a member of the organization. For more information, see \"Converting an organization member to an outside collaborator\".
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "User is getting converted asynchronously"
+ "description": "User is getting converted asynchronously
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "User was converted"
+ "description": "User was converted
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if user is the last owner of the organization or not a member of the organization"
+ "description": "Forbidden if user is the last owner of the organization or not a member of the organization
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "When an organization member is converted to an outside collaborator, they'll only have access to the repositories that their current team membership allows. The user will no longer be a member of the organization. For more information, see \"Converting an organization member to an outside collaborator\".
"
+ ]
},
{
"verb": "delete",
@@ -24306,12 +24306,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if user is a member of the organization",
+ "description": "Unprocessable Entity if user is a member of the organization
",
"payload": "{\n \"message\": \"You cannot specify an organization member to remove as an outside collaborator.\",\n \"documentation_url\": \"https://docs.github.com/enterprise-server@3.3/rest/reference/orgs#remove-outside-collaborator\"\n}\n
"
}
]
@@ -24422,7 +24422,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/admin/pre-receive-hooks/42\",\n \"allow_downstream_configuration\": true\n }\n]\n
"
}
]
@@ -24492,7 +24492,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/admin/pre-receive-hooks/42\",\n \"allow_downstream_configuration\": true\n}\n
"
}
]
@@ -24615,7 +24615,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"enabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\",\n \"allow_downstream_configuration\": false\n}\n
"
}
]
@@ -24685,7 +24685,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/admin/pre-receive-hooks/42\",\n \"allow_downstream_configuration\": true\n}\n
"
}
]
@@ -24779,13 +24779,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -24899,33 +24899,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -25004,7 +25004,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -25068,19 +25068,19 @@
"subcategoryLabel": "Members",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if user is a public member"
+ "description": "Response if user is a public member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if user is not a public member"
+ "description": "Not Found if user is not a public member
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -25140,20 +25140,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The user can publicize their own membership. (A user cannot publicize the membership for another user.)
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The user can publicize their own membership. (A user cannot publicize the membership for another user.)
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -25214,14 +25214,14 @@
"subcategoryLabel": "Members",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -25346,7 +25346,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -25786,18 +25786,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"organization\": null,\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -25908,18 +25908,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"number\": 2,\n \"created_at\": \"2020-11-06T18:48:51Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/2\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2/locations\",\n \"state\": \"resolved\",\n \"resolution\": \"false_positive\",\n \"resolved_at\": \"2020-11-07T02:47:13Z\",\n \"resolved_by\": {\n \"login\": \"monalisa\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjI=\",\n \"avatar_url\": \"https://alambic.github.com/avatars/u/2?\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/monalisa\",\n \"followers_url\": \"https://api.github.com/users/monalisa/followers\",\n \"following_url\": \"https://api.github.com/users/monalisa/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/monalisa/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/monalisa/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/monalisa/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/monalisa/orgs\",\n \"repos_url\": \"https://api.github.com/users/monalisa/repos\",\n \"events_url\": \"https://api.github.com/users/monalisa/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/monalisa/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"secret_type\": \"adafruit_io_key\",\n \"secret\": \"aio_XXXXXXXXXXXXXXXXXXXXXXXXXXXX\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n }\n },\n {\n \"number\": 1,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/repo/secret-scanning/alerts/1\",\n \"html_url\": \"https://github.com/owner/repo/security/secret-scanning/1\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/1/locations\",\n \"state\": \"open\",\n \"resolution\": null,\n \"resolved_at\": null,\n \"resolved_by\": null,\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -25996,13 +25996,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -26240,18 +26240,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -26318,13 +26318,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -26522,7 +26522,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
}
]
@@ -26584,15 +26584,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "To delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "To delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}.
"
+ ]
},
{
"verb": "get",
@@ -26704,7 +26704,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -26853,7 +26853,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -26932,7 +26932,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -27064,7 +27064,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 1,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Welcome to our first team post\",\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -27137,15 +27137,15 @@
"subcategory": "discussions",
"subcategoryLabel": "Discussions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Delete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Delete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}.
"
+ ]
},
{
"verb": "get",
@@ -27256,7 +27256,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -27374,7 +27374,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -27462,7 +27462,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -27588,7 +27588,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like pineapples?\",\n \"body_html\": \"<p>Do you like pineapples?</p>\",\n \"body_version\": \"e6907b24d9c93cc0c5024a7af5888116\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -27670,15 +27670,15 @@
"subcategory": "discussion-comments",
"subcategoryLabel": "Discussion comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}.
"
+ ]
},
{
"verb": "get",
@@ -27801,7 +27801,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -27945,13 +27945,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -28040,15 +28040,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion comment. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion comment. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -28162,7 +28162,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -28297,13 +28297,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -28383,15 +28383,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -28494,7 +28494,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -28579,7 +28579,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if user has no team membership"
+ "description": "if user has no team membership
"
}
]
},
@@ -28705,12 +28705,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team
"
}
]
},
@@ -28782,20 +28782,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/memberships/{username}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/memberships/{username}.
"
+ ]
},
{
"verb": "get",
@@ -28880,7 +28880,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n }\n]\n
"
}
]
@@ -28957,13 +28957,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if project is not managed by this team"
+ "description": "Not Found if project is not managed by this team
"
}
]
},
@@ -29082,12 +29082,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if the project is not owned by the organization",
+ "description": "Forbidden if the project is not owned by the organization
",
"payload": "{\n \"message\": \"Must have admin rights to Repository.\",\n \"documentation_url\": \"https://docs.github.com/enterprise-server@3.3/rest/reference/teams#add-or-update-team-project-permissions\"\n}\n
"
}
]
@@ -29158,15 +29158,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. This endpoint removes the project from the team, but does not delete the project.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/projects/{project_id}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. This endpoint removes the project from the team, but does not delete the project.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/projects/{project_id}.
"
+ ]
},
{
"verb": "get",
@@ -29251,7 +29251,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -29337,18 +29337,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Alternative response with repository permissions",
+ "description": "Alternative response with repository permissions
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"maintain\": false,\n \"push\": false,\n \"triage\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"triage\": false,\n \"push\": false,\n \"maintain\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if team has permission for the repository. This is the response when the repository media type hasn't been provded in the Accept header."
+ "description": "Response if team has permission for the repository. This is the response when the repository media type hasn't been provded in the Accept header.
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team does not have permission for the repository"
+ "description": "Not Found if team does not have permission for the repository
"
}
]
},
@@ -29457,14 +29457,14 @@
"categoryLabel": "Teams",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "To add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization. Note that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nNote: You can also specify a team by org_id and team_id using the route PUT /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
\nFor more information about the permission levels, see \"Repository permission levels for an organization\".
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "To add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization. Note that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nNote: You can also specify a team by org_id and team_id using the route PUT /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
\nFor more information about the permission levels, see \"Repository permission levels for an organization\".
",
"bodyParameters": [
{
"type": "string",
@@ -29560,15 +29560,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. This does not delete the repository, it just removes it from the team.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. This does not delete the repository, it just removes it from the team.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
"
+ ]
},
{
"verb": "get",
@@ -29653,7 +29653,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if child teams exist",
+ "description": "if child teams exist
",
"payload": "[\n {\n \"id\": 2,\n \"node_id\": \"MDQ6VGVhbTI=\",\n \"url\": \"https://api.github.com/teams/2\",\n \"name\": \"Original Roster\",\n \"slug\": \"original-roster\",\n \"description\": \"Started it all.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/2/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/2/repos\",\n \"parent\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n },\n \"html_url\": \"https://github.com/orgs/rails/teams/core\"\n }\n]\n
"
}
]
@@ -29714,28 +29714,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -29851,33 +29851,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -29932,34 +29932,34 @@
"subcategoryLabel": "Cards",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -30053,32 +30053,32 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Response"
+ "description": "Response
"
}
],
"bodyParameters": [
@@ -30161,28 +30161,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -30279,23 +30279,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -30350,29 +30350,29 @@
"subcategoryLabel": "Columns",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -30466,23 +30466,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -30654,33 +30654,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Response"
+ "description": "Response
"
}
]
},
@@ -30766,27 +30766,27 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -30856,23 +30856,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -31053,38 +31053,38 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if the authenticated user does not have access to the project"
+ "description": "Not Found if the authenticated user does not have access to the project
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -31135,40 +31135,40 @@
"category": "projects",
"categoryLabel": "Projects",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a project board. Returns a 404 Not Found status if projects are disabled.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Delete Success"
+ "description": "Delete Success
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a project board. Returns a 404 Not Found status if projects are disabled.
"
+ ]
},
{
"verb": "get",
@@ -31261,33 +31261,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -31379,39 +31379,39 @@
"subcategoryLabel": "Collaborators",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Adds a collaborator to an organization project and sets their permission level. You must be an organization owner or a project admin to add a collaborator.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Adds a collaborator to an organization project and sets their permission level. You must be an organization owner or a project admin to add a collaborator.
",
"bodyParameters": [
{
"description": "The permission to grant the collaborator.
",
@@ -31489,40 +31489,40 @@
"subcategory": "collaborators",
"subcategoryLabel": "Collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a collaborator from an organization project. You must be an organization owner or a project admin to remove a collaborator.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a collaborator from an organization project. You must be an organization owner or a project admin to remove a collaborator.
"
+ ]
},
{
"verb": "get",
@@ -31588,33 +31588,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -31693,23 +31693,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -31805,28 +31805,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -31873,18 +31873,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"resources\": {\n \"core\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1372700873,\n \"used\": 1\n },\n \"search\": {\n \"limit\": 30,\n \"remaining\": 18,\n \"reset\": 1372697452,\n \"used\": 12\n },\n \"graphql\": {\n \"limit\": 5000,\n \"remaining\": 4993,\n \"reset\": 1372700389,\n \"used\": 7\n },\n \"integration_manifest\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1551806725,\n \"used\": 1\n },\n \"code_scanning_upload\": {\n \"limit\": 500,\n \"remaining\": 499,\n \"reset\": 1551806725,\n \"used\": 1\n }\n },\n \"rate\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1372700873,\n \"used\": 1\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -31938,35 +31938,35 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Reactions API. We recommend migrating your existing code to use the new delete reactions endpoints. For more information, see this blog post.
\nOAuth access tokens require the write:discussion scope, when deleting a team discussion or team discussion comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Reactions API. We recommend migrating your existing code to use the new delete reactions endpoints. For more information, see this blog post.
\nOAuth access tokens require the write:discussion scope, when deleting a team discussion or team discussion comment.
"
+ ]
},
{
"verb": "get",
@@ -32036,17 +32036,17 @@
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -32503,28 +32503,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"language\": null,\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"push\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"organization\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"parent\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"source\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n}\n
"
},
{
"httpStatusCode": "307",
"httpStatusMessage": "Temporary Redirect",
- "description": "Temporary Redirect"
+ "description": "Temporary Redirect
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -32962,23 +32962,23 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "307",
"httpStatusMessage": "Temporary Redirect",
- "description": "Temporary Redirect"
+ "description": "Temporary Redirect
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "If an organization owner has configured the organization to prevent members from deleting organization-owned repositories, a member will get this response:",
+ "description": "If an organization owner has configured the organization to prevent members from deleting organization-owned repositories, a member will get this response:
",
"payload": "{\n \"message\": \"Organization members cannot delete repositories.\",\n \"documentation_url\": \"https://docs.github.com/enterprise-server@3.3/rest/reference/repos#delete-a-repository\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -33066,7 +33066,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"artifacts\": [\n {\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n },\n {\n \"id\": 13,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMw==\",\n \"name\": \"\",\n \"size_in_bytes\": 453,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -33145,7 +33145,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-01-21T14:59:22Z\",\n \"updated_at\": \"2020-01-21T14:59:22Z\"\n}\n
"
}
]
@@ -33218,15 +33218,15 @@
"subcategory": "artifacts",
"subcategoryLabel": "Artifacts",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes an artifact for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes an artifact for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -33305,15 +33305,15 @@
"subcategory": "artifacts",
"subcategoryLabel": "Artifacts",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download an archive for a repository. This URL expires after 1 minute. Look for Location: in\nthe response header to find the URL for the download. The :archive_format must be zip. Anyone with read access to\nthe repository can use this endpoint. If the repository is private you must use an access token with the repo scope.\nGitHub Apps must have the actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download an archive for a repository. This URL expires after 1 minute. Look for Location: in\nthe response header to find the URL for the download. The :archive_format must be zip. Anyone with read access to\nthe repository can use this endpoint. If the repository is private you must use an access token with the repo scope.\nGitHub Apps must have the actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -33389,7 +33389,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 399444496,\n \"run_id\": 29679449,\n \"run_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\",\n \"node_id\": \"MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\",\n \"head_sha\": \"f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/runs/399444496\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"started_at\": \"2020-01-20T17:42:40Z\",\n \"completed_at\": \"2020-01-20T17:44:39Z\",\n \"name\": \"build\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 1,\n \"started_at\": \"2020-01-20T09:42:40.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:41.000-08:00\"\n },\n {\n \"name\": \"Run actions/checkout@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 2,\n \"started_at\": \"2020-01-20T09:42:41.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Set up Ruby\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 3,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Run actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 4,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:48.000-08:00\"\n },\n {\n \"name\": \"Install Bundler\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 5,\n \"started_at\": \"2020-01-20T09:42:48.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:52.000-08:00\"\n },\n {\n \"name\": \"Install Gems\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 6,\n \"started_at\": \"2020-01-20T09:42:52.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:53.000-08:00\"\n },\n {\n \"name\": \"Run Tests\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 7,\n \"started_at\": \"2020-01-20T09:42:53.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:59.000-08:00\"\n },\n {\n \"name\": \"Deploy to Heroku\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 8,\n \"started_at\": \"2020-01-20T09:42:59.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Post actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 16,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Complete job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 17,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n }\n ],\n \"check_run_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\",\n \"labels\": [\n \"self-hosted\",\n \"foo\",\n \"bar\"\n ],\n \"runner_id\": 1,\n \"runner_name\": \"my runner\",\n \"runner_group_id\": 2,\n \"runner_group_name\": \"my runner group\"\n}\n
"
}
]
@@ -33462,15 +33462,15 @@
"subcategory": "workflow-jobs",
"subcategoryLabel": "Workflow jobs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a plain text file of logs for a workflow job. This link expires after 1 minute. Look\nfor Location: in the response header to find the URL for the download. Anyone with read access to the repository can\nuse this endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must\nhave the actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a plain text file of logs for a workflow job. This link expires after 1 minute. Look\nfor Location: in the response header to find the URL for the download. Anyone with read access to the repository can\nuse this endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must\nhave the actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -33536,7 +33536,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled\": true,\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/repositories/42/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -33642,14 +33642,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for enabling GitHub Actions and allowed actions in the repository.
\nIf the repository belongs to an organization or enterprise that has set restrictive permissions at the organization or enterprise levels, such as allowed_actions to selected actions, then you cannot override them for the repository.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for enabling GitHub Actions and allowed actions in the repository.
\nIf the repository belongs to an organization or enterprise that has set restrictive permissions at the organization or enterprise levels, such as allowed_actions to selected actions, then you cannot override them for the repository.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -33740,7 +33740,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -33853,14 +33853,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in a repository. To use this endpoint, the repository permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for a repository.\"
\nIf the repository belongs to an organization or enterprise that has selected actions set at the organization or enterprise levels, then you cannot override any of the allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the repository must belong to an enterprise. If the repository does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in a repository. To use this endpoint, the repository permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for a repository.\"
\nIf the repository belongs to an organization or enterprise that has selected actions set at the organization or enterprise levels, then you cannot override any of the allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the repository must belong to an enterprise. If the repository does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -33969,7 +33969,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -34038,7 +34038,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"os\": \"osx\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-osx-x64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-osx-x64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"f1fa173889dc9036cd529417e652e1729e5a3f4d35ec0151806d7480fda6b89b\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-x64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-x64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"02d710fc9e0008e641274bb7da7fde61f7c9aa1cbb541a2990d3450cc88f4e98\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-arm-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIyYTEzZDRmZC01ZDhkLTRjNzgtYjg2MS0zYTMxZGQ3MmYzNjQiLCJzaWQiOiI0MzZiNTg3YS04ODMyLTRiMTMtOWM2Ny05OWRkMjA2ZTQzNmMiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MzE1NzEsImV4cCI6MTYxNzkzNTc3MX0.PMhU7-MOnZRDj5k5a4ieeFlQCmKPl2pQvpVRhGZq-9ByKF5s9G0rsnGBxDcolTYlbvEAmSSkeAEwF486F7P0kMVEb-GI14WbErqqMSyaPL81c3W7UHxMJLaSBnDs9ftHMv_IkJmRzaROS8q1ObzUW-ErlltxCdj2zF_5ruK9G2RR566AOAtiA3AHV6k7-FCY5--sDYJN_YXPgpwI0fPN1TM92fdPm93hJnoXuCJNpBYp1vl5W4gwGtU_Pa07ESdqqFN1YJJHUloedNhiIOczGfGVSapRc8vyGm9P_VCM_yKD8JI-MkOXl8JI5fCfhmjmKsw-vSAh9NW67RGvmehmpw\",\n \"sha256_checksum\": \"2f2bda21e2fd8fed6938b33182a293f6b1f74e4c5d09acd6d9a0fe3f979f5c85\"\n },\n {\n \"os\": \"win\",\n \"architecture\": \"x64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-win-x64-2.277.1.zip\",\n \"filename\": \"actions-runner-win-x64-2.277.1.zip\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"7215c75a462eeb6a839fa8ed298d79f620617d44d47d37c583114fc3f3b27b30\"\n },\n {\n \"os\": \"linux\",\n \"architecture\": \"arm64\",\n \"download_url\": \"https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm64-2.277.1.tar.gz\",\n \"filename\": \"actions-runner-linux-arm64-2.277.1.tar.gz\",\n \"temp_download_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\",\n \"sha256_checksum\": \"a6aa6dd0ba217118ef2b4ea24e9e0a85b02b13c38052a5de0776d6ced3a79c64\"\n }\n]\n
"
}
]
@@ -34107,7 +34107,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"LLBF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-22T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -34176,7 +34176,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"AABF3JGZDX3P5PMEXLND6TS6FCWO6\",\n \"expires_at\": \"2020-01-29T12:13:35.123-08:00\"\n}\n
"
}
]
@@ -34255,7 +34255,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 23,\n \"name\": \"MBP\",\n \"os\": \"macos\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
}
]
@@ -34328,15 +34328,15 @@
"subcategory": "self-hosted-runners",
"subcategoryLabel": "Self hosted runners",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from a repository. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the repo\nscope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from a repository. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the repo\nscope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -34498,7 +34498,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"workflow_runs\": [\n {\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n }\n ]\n}\n
"
}
]
@@ -34588,7 +34588,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"check_suite_id\": 42,\n \"check_suite_node_id\": \"MDEwOkNoZWNrU3VpdGU0Mg==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n}\n
"
}
]
@@ -34661,15 +34661,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Delete a specific workflow run. Anyone with write access to the repository can use this endpoint. If the repository is\nprivate you must use an access token with the repo scope. GitHub Apps must have the actions:write permission to use\nthis endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Delete a specific workflow run. Anyone with write access to the repository can use this endpoint. If the repository is\nprivate you must use an access token with the repo scope. GitHub Apps must have the actions:write permission to use\nthis endpoint.
"
+ ]
},
{
"verb": "get",
@@ -34745,7 +34745,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"state\": \"approved\",\n \"comment\": \"Ship it!\",\n \"environments\": [\n {\n \"id\": 161088068,\n \"node_id\": \"MDExOkVudmlyb25tZW50MTYxMDg4MDY4\",\n \"name\": \"staging\",\n \"url\": \"https://api.github.com/repos/github/hello-world/environments/staging\",\n \"html_url\": \"https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\",\n \"created_at\": \"2020-11-23T22:00:40Z\",\n \"updated_at\": \"2020-11-23T22:00:40Z\"\n }\n ],\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
}
]
@@ -34844,7 +34844,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"artifacts\": [\n {\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n },\n {\n \"id\": 13,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMw==\",\n \"name\": \"\",\n \"size_in_bytes\": 453,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -34944,7 +34944,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"check_suite_id\": 42,\n \"check_suite_node_id\": \"MDEwOkNoZWNrU3VpdGU0Mg==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n}\n
"
}
]
@@ -35053,13 +35053,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"jobs\": [\n {\n \"id\": 399444496,\n \"run_id\": 29679449,\n \"run_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\",\n \"node_id\": \"MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\",\n \"head_sha\": \"f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/runs/399444496\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"started_at\": \"2020-01-20T17:42:40Z\",\n \"completed_at\": \"2020-01-20T17:44:39Z\",\n \"name\": \"build\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 1,\n \"started_at\": \"2020-01-20T09:42:40.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:41.000-08:00\"\n },\n {\n \"name\": \"Run actions/checkout@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 2,\n \"started_at\": \"2020-01-20T09:42:41.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Set up Ruby\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 3,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Run actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 4,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:48.000-08:00\"\n },\n {\n \"name\": \"Install Bundler\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 5,\n \"started_at\": \"2020-01-20T09:42:48.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:52.000-08:00\"\n },\n {\n \"name\": \"Install Gems\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 6,\n \"started_at\": \"2020-01-20T09:42:52.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:53.000-08:00\"\n },\n {\n \"name\": \"Run Tests\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 7,\n \"started_at\": \"2020-01-20T09:42:53.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:59.000-08:00\"\n },\n {\n \"name\": \"Deploy to Heroku\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 8,\n \"started_at\": \"2020-01-20T09:42:59.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Post actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 16,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Complete job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 17,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n }\n ],\n \"check_run_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\",\n \"labels\": [\n \"self-hosted\",\n \"foo\",\n \"bar\"\n ],\n \"runner_id\": 1,\n \"runner_name\": \"my runner\",\n \"runner_group_id\": 2,\n \"runner_group_name\": \"my runner group\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -35131,15 +35131,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Cancels a workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Cancels a workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -35250,7 +35250,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"jobs\": [\n {\n \"id\": 399444496,\n \"run_id\": 29679449,\n \"run_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\",\n \"node_id\": \"MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\",\n \"head_sha\": \"f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/runs/399444496\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"started_at\": \"2020-01-20T17:42:40Z\",\n \"completed_at\": \"2020-01-20T17:44:39Z\",\n \"name\": \"build\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 1,\n \"started_at\": \"2020-01-20T09:42:40.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:41.000-08:00\"\n },\n {\n \"name\": \"Run actions/checkout@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 2,\n \"started_at\": \"2020-01-20T09:42:41.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Set up Ruby\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 3,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Run actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 4,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:48.000-08:00\"\n },\n {\n \"name\": \"Install Bundler\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 5,\n \"started_at\": \"2020-01-20T09:42:48.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:52.000-08:00\"\n },\n {\n \"name\": \"Install Gems\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 6,\n \"started_at\": \"2020-01-20T09:42:52.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:53.000-08:00\"\n },\n {\n \"name\": \"Run Tests\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 7,\n \"started_at\": \"2020-01-20T09:42:53.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:59.000-08:00\"\n },\n {\n \"name\": \"Deploy to Heroku\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 8,\n \"started_at\": \"2020-01-20T09:42:59.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Post actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 16,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Complete job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 17,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n }\n ],\n \"check_run_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\",\n \"labels\": [\n \"self-hosted\",\n \"foo\",\n \"bar\"\n ],\n \"runner_id\": 1,\n \"runner_name\": \"my runner\",\n \"runner_group_id\": 2,\n \"runner_group_name\": \"my runner group\"\n }\n ]\n}\n
"
}
]
@@ -35323,15 +35323,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download an archive of log files for a workflow run. This link expires after 1 minute. Look for\nLocation: in the response header to find the URL for the download. Anyone with read access to the repository can use\nthis endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must have\nthe actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download an archive of log files for a workflow run. This link expires after 1 minute. Look for\nLocation: in the response header to find the URL for the download. Anyone with read access to the repository can use\nthis endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must have\nthe actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -35401,15 +35401,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes all logs for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes all logs for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -35485,7 +35485,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"environment\": {\n \"id\": 161088068,\n \"node_id\": \"MDExOkVudmlyb25tZW50MTYxMDg4MDY4\",\n \"name\": \"staging\",\n \"url\": \"https://api.github.com/repos/github/hello-world/environments/staging\",\n \"html_url\": \"https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\"\n },\n \"wait_timer\": 30,\n \"wait_timer_started_at\": \"2020-11-23T22:00:40Z\",\n \"current_user_can_approve\": true,\n \"reviewers\": [\n {\n \"type\": \"User\",\n \"reviewer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"type\": \"Team\",\n \"reviewer\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n }\n ]\n }\n]\n
"
}
]
@@ -35665,7 +35665,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n }\n]\n
"
}
]
@@ -35740,15 +35740,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Re-runs your workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Re-runs your workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -35834,7 +35834,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"secrets\": [\n {\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n },\n {\n \"name\": \"GIST_ID\",\n \"created_at\": \"2020-01-10T10:59:22Z\",\n \"updated_at\": \"2020-01-11T11:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -35903,7 +35903,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -35982,7 +35982,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n}\n
"
}
]
@@ -36034,7 +36034,7 @@
}
],
"summary": "Create or update a repository secret",
- "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -36095,15 +36095,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -36194,15 +36194,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in a repository using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in a repository using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -36288,7 +36288,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"workflows\": [\n {\n \"id\": 161335,\n \"node_id\": \"MDg6V29ya2Zsb3cxNjEzMzU=\",\n \"name\": \"CI\",\n \"path\": \".github/workflows/blank.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/161335\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/161335\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/CI/badge.svg\"\n },\n {\n \"id\": 269289,\n \"node_id\": \"MDE4OldvcmtmbG93IFNlY29uZGFyeTI2OTI4OQ==\",\n \"name\": \"Linter\",\n \"path\": \".github/workflows/linter.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/269289\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/269289\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/Linter/badge.svg\"\n }\n ]\n}\n
"
}
]
@@ -36374,7 +36374,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 161335,\n \"node_id\": \"MDg6V29ya2Zsb3cxNjEzMzU=\",\n \"name\": \"CI\",\n \"path\": \".github/workflows/blank.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/161335\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/161335\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/CI/badge.svg\"\n}\n
"
}
]
@@ -36454,15 +36454,15 @@
"subcategory": "workflows",
"subcategoryLabel": "Workflows",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Disables a workflow and sets the state of the workflow to disabled_manually. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Disables a workflow and sets the state of the workflow to disabled_manually. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -36584,14 +36584,14 @@
"subcategoryLabel": "Workflows",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "You can use this endpoint to manually trigger a GitHub Actions workflow run. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must configure your GitHub Actions workflow to run when the workflow_dispatch webhook event occurs. The inputs are configured in the workflow file. For more information about how to configure the workflow_dispatch event in the workflow file, see \"Events that trigger workflows.\"
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint. For more information, see \"Creating a personal access token for the command line.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "You can use this endpoint to manually trigger a GitHub Actions workflow run. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must configure your GitHub Actions workflow to run when the workflow_dispatch webhook event occurs. The inputs are configured in the workflow file. For more information about how to configure the workflow_dispatch event in the workflow file, see \"Events that trigger workflows.\"
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint. For more information, see \"Creating a personal access token for the command line.\"
",
"bodyParameters": [
{
"type": "string",
@@ -36692,15 +36692,15 @@
"subcategory": "workflows",
"subcategoryLabel": "Workflows",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Enables a workflow and sets the state of the workflow to active. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Enables a workflow and sets the state of the workflow to active. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -36879,7 +36879,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"workflow_runs\": [\n {\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n }\n ]\n}\n
"
}
]
@@ -36968,13 +36968,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -37045,20 +37045,20 @@
"subcategory": "assignees",
"subcategoryLabel": "Assignees",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Checks if a user has permission to be assigned to an issue in this repository.
\nIf the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
\nOtherwise a 404 status code is returned.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "If the `assignee` can be assigned to issues in the repository, a `204` header with no content is returned."
+ "description": "If the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Otherwise a `404` status code is returned."
+ "description": "Otherwise a 404 status code is returned.
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Checks if a user has permission to be assigned to an issue in this repository.
\nIf the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
\nOtherwise a 404 status code is returned.
"
+ ]
},
{
"verb": "get",
@@ -37134,7 +37134,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"key_prefix\": \"TICKET-\",\n \"url_template\": \"https://example.com/TICKET?query=<num>\"\n }\n]\n
"
}
]
@@ -37261,13 +37261,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "response",
+ "description": "response
",
"payload": "{\n \"id\": 1,\n \"key_prefix\": \"TICKET-\",\n \"url_template\": \"https://example.com/TICKET?query=<num>\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -37345,13 +37345,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"key_prefix\": \"TICKET-\",\n \"url_template\": \"https://example.com/TICKET?query=<num>\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -37423,20 +37423,20 @@
"subcategory": "autolinks",
"subcategoryLabel": "Autolinks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This deletes a single autolink reference by ID that was configured for the given repository.
\nInformation about autolinks are only available to repository administrators.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This deletes a single autolink reference by ID that was configured for the given repository.
\nInformation about autolinks are only available to repository administrators.
"
+ ]
},
{
"verb": "get",
@@ -37530,13 +37530,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"protected\": true,\n \"protection\": {\n \"required_status_checks\": {\n \"enforcement_level\": \"non_admins\",\n \"contexts\": [\n \"ci-test\",\n \"linter\"\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/octocat/hello-world/branches/master/protection\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -37608,29 +37608,29 @@
"categoryLabel": "Branches",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -37707,13 +37707,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection\",\n \"required_status_checks\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\",\n \"enforcement_level\": \"non_admins\"\n },\n \"enforce_admins\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n },\n \"required_pull_request_reviews\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n },\n \"restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"apps_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"apps\": [\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n ]\n },\n \"required_linear_history\": {\n \"enabled\": true\n },\n \"allow_force_pushes\": {\n \"enabled\": true\n },\n \"allow_deletions\": {\n \"enabled\": true\n },\n \"required_conversation_resolution\": {\n \"enabled\": true\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -38459,29 +38459,29 @@
"subcategoryLabel": "Branch protection",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nProtecting a branch requires admin or owner permissions to the repository.
\nNote: Passing new arrays of users and teams replaces their previous values.
\nNote: The list of users, apps, and teams in total is limited to 100 items.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nProtecting a branch requires admin or owner permissions to the repository.
\nNote: Passing new arrays of users and teams replaces their previous values.
\nNote: The list of users, apps, and teams in total is limited to 100 items.
",
"bodyParameters": [
{
"type": "object or nullable",
@@ -39163,20 +39163,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -39253,7 +39253,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n}\n
"
}
]
@@ -39333,7 +39333,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n}\n
"
}
]
@@ -39407,20 +39407,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nRemoving admin enforcement requires admin or owner permissions to the repository and branch protection to be enabled.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nRemoving admin enforcement requires admin or owner permissions to the repository and branch protection to be enabled.
"
+ ]
},
{
"verb": "get",
@@ -39497,7 +39497,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n}\n
"
}
]
@@ -39704,13 +39704,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -39879,20 +39879,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -39969,13 +39969,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures\",\n \"enabled\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -40054,13 +40054,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures\",\n \"enabled\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -40133,20 +40133,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nWhen authenticated with admin or owner permissions to the repository, you can use this endpoint to disable required signed commits on a branch. You must enable branch protection to require signed commits.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nWhen authenticated with admin or owner permissions to the repository, you can use this endpoint to disable required signed commits on a branch. You must enable branch protection to require signed commits.
"
+ ]
},
{
"verb": "get",
@@ -40223,13 +40223,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"strict\": true,\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -40372,18 +40372,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"strict\": true,\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40456,15 +40456,15 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -40541,13 +40541,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -40684,23 +40684,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\",\n \"continuous-integration/jenkins\"\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40837,18 +40837,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -40984,18 +40984,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -41074,13 +41074,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"apps_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"apps\": [\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -41153,15 +41153,15 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nDisables the ability to restrict who can push to this branch.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nDisables the ability to restrict who can push to this branch.
"
+ ]
},
{
"verb": "get",
@@ -41238,13 +41238,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -41380,13 +41380,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -41522,13 +41522,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -41663,13 +41663,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -41748,13 +41748,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -41891,13 +41891,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -42034,13 +42034,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -42176,13 +42176,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -42261,13 +42261,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -42403,13 +42403,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -42545,13 +42545,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -42686,13 +42686,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -42807,23 +42807,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"node_id\": \"MDY6Q29tbWl0N2ZkMWE2MGIwMWY5MWIzMTRmNTk5NTVhNGU0ZDRlODBkOGVkZjExZA==\",\n \"commit\": {\n \"author\": {\n \"name\": \"The Octocat\",\n \"date\": \"2012-03-06T15:06:50-08:00\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"tree\": {\n \"sha\": \"b4eecafa9be2f2006ce1b709d6857b07069b4608\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/b4eecafa9be2f2006ce1b709d6857b07069b4608\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"date\": \"2012-03-06T15:06:50-08:00\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n },\n \"comment_count\": 0\n },\n \"author\": {\n \"gravatar_id\": \"\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/7ad39074b0584bc555d0417ae3e7d974?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"id\": 583231,\n \"login\": \"octocat\",\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"parents\": [\n {\n \"sha\": \"553c2077f0edc3d5dc5d17262f6aa498e69d6f8e\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/553c2077f0edc3d5dc5d17262f6aa498e69d6f8e\"\n },\n {\n \"sha\": \"762941318ee16e59dabbacb1b4049eec22f0d303\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/762941318ee16e59dabbacb1b4049eec22f0d303\"\n }\n ],\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"committer\": {\n \"gravatar_id\": \"\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/7ad39074b0584bc555d0417ae3e7d974?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"id\": 583231,\n \"login\": \"octocat\",\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\"\n },\n \"_links\": {\n \"html\": \"https://github.com/octocat/Hello-World/tree/master\",\n \"self\": \"https://api.github.com/repos/octocat/Hello-World/branches/master\"\n },\n \"protected\": true,\n \"protection\": {\n \"required_status_checks\": {\n \"enforcement_level\": \"non_admins\",\n \"contexts\": [\n \"ci-test\",\n \"linter\"\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/octocat/hello-world/branches/master/protection\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -44981,7 +44981,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n}\n
"
}
]
@@ -46075,7 +46075,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n}\n
"
}
],
@@ -47115,7 +47115,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"path\": \"README.md\",\n \"start_line\": 2,\n \"end_line\": 2,\n \"start_column\": 5,\n \"end_column\": 10,\n \"annotation_level\": \"warning\",\n \"title\": \"Spell Checker\",\n \"message\": \"Check your spelling for 'banaas'.\",\n \"raw_details\": \"Do you mean 'bananas' or 'banana'?\",\n \"blob_href\": \"https://api.github.com/repos/github/rest-api-description/git/blobs/abc\"\n }\n]\n
"
}
]
@@ -47195,30 +47195,30 @@
"subcategory": "runs",
"subcategoryLabel": "Runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check run, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if the check run is not rerequestable or doesn't belong to the authenticated GitHub App"
+ "description": "Forbidden if the check run is not rerequestable or doesn't belong to the authenticated GitHub App
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation error if the check run is not rerequestable"
+ "description": "Validation error if the check run is not rerequestable
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check run, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
"
+ ]
},
{
"verb": "post",
@@ -47322,13 +47322,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "when the suite already existed",
+ "description": "when the suite already existed
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when the suite was created",
+ "description": "Response when the suite was created
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
}
]
@@ -47481,7 +47481,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"preferences\": {\n \"auto_trigger_checks\": [\n {\n \"app_id\": 2,\n \"setting\": true\n },\n {\n \"app_id\": 4,\n \"setting\": false\n }\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n }\n}\n
"
}
],
@@ -47626,7 +47626,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
}
]
@@ -47765,7 +47765,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_runs\": [\n {\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -47838,15 +47838,15 @@
"subcategory": "suites",
"subcategoryLabel": "Suites",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check suite, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check suite, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
"
+ ]
},
{
"verb": "get",
@@ -47981,23 +47981,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"number\": 4,\n \"created_at\": \"2020-02-13T12:29:18Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/4\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/4\",\n \"state\": \"open\",\n \"dismissed_by\": null,\n \"dismissed_at\": null,\n \"dismissed_reason\": null,\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"description\": \"Arbitrary file write during zip extraction\",\n \"name\": \"js/zipslip\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"open\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/4/instances\"\n },\n {\n \"number\": 3,\n \"created_at\": \"2020-02-13T12:29:18Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/3\",\n \"state\": \"dismissed\",\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-02-14T12:29:18Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"description\": \"Arbitrary file write during zip extraction\",\n \"name\": \"js/zipslip\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"open\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"lib/ab12-gen.js\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": []\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -48075,23 +48075,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-06-19T11:21:34Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/42\",\n \"state\": \"dismissed\",\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 54933897,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-02-14T12:29:18Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"security_severity_level\": \"high\",\n \"description\": \"Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\",\n \"name\": \"js/zipslip\",\n \"full_description\": \"Extracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten.\",\n \"tags\": [\n \"security\",\n \"external/cwe/cwe-022\"\n ],\n \"help\": \"# Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\\\\nExtracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten ...\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"dismissed\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -48247,23 +48247,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-08-25T21:28:36Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/42\",\n \"state\": \"dismissed\",\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-09-02T22:34:56Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"security_severity_level\": \"high\",\n \"description\": \"Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\",\n \"name\": \"js/zipslip\",\n \"full_description\": \"Extracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten.\",\n \"tags\": [\n \"security\",\n \"external/cwe/cwe-022\"\n ],\n \"help\": \"# Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\\\\nExtracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten ...\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"dismissed\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -48372,23 +48372,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"\",\n \"state\": \"open\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"lib/ab12-gen.js\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"library\"\n ]\n },\n {\n \"ref\": \"refs/pull/3740/merge\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"\",\n \"category\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"state\": \"fixed\",\n \"commit_sha\": \"b09da05606e27f463a2b49287684b4ae777092f2\",\n \"message\": {\n \"text\": \"This suffix check is missing a length comparison to correctly handle lastIndexOf returning -1.\"\n },\n \"location\": {\n \"path\": \"app/script.js\",\n \"start_line\": 2,\n \"end_line\": 2,\n \"start_column\": 10,\n \"end_column\": 50\n },\n \"classifications\": [\n \"source\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -48519,23 +48519,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/main\",\n \"commit_sha\": \"d99612c3e1f2970085cfbaeadf8f010ef69bad83\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:analyze\",\n \"environment\": \"{\\\"language\\\":\\\"python\\\"}\",\n \"error\": \"\",\n \"category\": \".github/workflows/codeql-analysis.yml:analyze/language:python\",\n \"created_at\": \"2020-08-27T15:05:21Z\",\n \"results_count\": 17,\n \"rules_count\": 49,\n \"id\": 201,\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/201\",\n \"sarif_id\": \"6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53\",\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"deletable\": true,\n \"warning\": \"\"\n },\n {\n \"ref\": \"refs/heads/my-branch\",\n \"commit_sha\": \"c8cff6510d4d084fb1b4aa13b64b97ca12b07321\",\n \"analysis_key\": \".github/workflows/shiftleft.yml:build\",\n \"environment\": \"{}\",\n \"error\": \"\",\n \"category\": \".github/workflows/shiftleft.yml:build/\",\n \"created_at\": \"2020-08-31T22:46:44Z\",\n \"results_count\": 17,\n \"rules_count\": 32,\n \"id\": 200,\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/200\",\n \"sarif_id\": \"8981cd8e-b078-4ac3-a3be-1dad7dbd0b582\",\n \"tool\": {\n \"name\": \"Python Security Analysis\",\n \"guid\": null,\n \"version\": \"1.2.0\"\n },\n \"deletable\": true,\n \"warning\": \"\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -48616,17 +48616,17 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -48718,22 +48718,22 @@
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -48943,27 +48943,27 @@
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request if the sarif field is invalid"
+ "description": "Bad Request if the sarif field is invalid
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "413",
"httpStatusMessage": "Payload Too Large",
- "description": "Payload Too Large if the sarif field is too large"
+ "description": "Payload Too Large if the sarif field is too large
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -49044,17 +49044,17 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if the sarif id does not match any upload"
+ "description": "Not Found if the sarif id does not match any upload
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -49156,13 +49156,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"permissions\": {\n \"pull\": true,\n \"push\": true,\n \"admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -49231,20 +49231,20 @@
"category": "collaborators",
"categoryLabel": "Collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "For organization-owned repositories, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners.
\nTeam members will include the members of child teams.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if user is a collaborator"
+ "description": "Response if user is a collaborator
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if user is not a collaborator"
+ "description": "Not Found if user is not a collaborator
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "For organization-owned repositories, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners.
\nTeam members will include the members of child teams.
"
+ ]
},
{
"verb": "put",
@@ -49384,23 +49384,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when a new invitation is created",
+ "description": "Response when a new invitation is created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\"\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when person is already a collaborator"
+ "description": "Response when person is already a collaborator
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -49470,14 +49470,14 @@
"categoryLabel": "Collaborators",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -49550,13 +49550,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if user has admin permissions",
+ "description": "if user has admin permissions
",
"payload": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -49644,7 +49644,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -49723,13 +49723,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -49845,13 +49845,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Nice change\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -49924,19 +49924,19 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -50050,13 +50050,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -50190,24 +50190,24 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -50286,15 +50286,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a commit comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a commit comment.
"
+ ]
},
{
"verb": "get",
@@ -50430,28 +50430,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -50528,13 +50528,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"branch_5\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"protected\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -50633,7 +50633,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -50809,18 +50809,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -50917,7 +50917,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false\n }\n]\n
"
}
]
@@ -51015,23 +51015,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ],\n \"stats\": {\n \"additions\": 104,\n \"deletions\": 4,\n \"total\": 108\n },\n \"files\": [\n {\n \"filename\": \"file1.txt\",\n \"additions\": 10,\n \"deletions\": 2,\n \"changes\": 12,\n \"status\": \"modified\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"patch\": \"@@ -29,7 +29,7 @@\\n.....\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -51179,7 +51179,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_runs\": [\n {\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -51300,7 +51300,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_suites\": [\n {\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n }\n ]\n}\n
"
}
]
@@ -51400,13 +51400,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"state\": \"success\",\n \"statuses\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\"\n },\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"id\": 2,\n \"node_id\": \"MDY6U3RhdHVzMg==\",\n \"state\": \"success\",\n \"description\": \"Testing has completed successfully\",\n \"target_url\": \"https://ci.example.com/2000/output\",\n \"context\": \"security/brakeman\",\n \"created_at\": \"2012-08-20T01:19:13Z\",\n \"updated_at\": \"2012-08-20T01:19:13Z\"\n }\n ],\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"total_count\": 2,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e/status\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -51505,13 +51505,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
}
]
},
@@ -51607,18 +51607,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/compare/master...topic\",\n \"html_url\": \"https://github.com/octocat/Hello-World/compare/master...topic\",\n \"permalink_url\": \"https://github.com/octocat/Hello-World/compare/octocat:bbcd538c8e72b8c175046e27cc8f907076331401...octocat:0328041d1152db8ae77652d1618a02e57f745f17\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/compare/master...topic.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/compare/master...topic.patch\",\n \"base_commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n },\n \"merge_base_commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n },\n \"status\": \"behind\",\n \"ahead_by\": 1,\n \"behind_by\": 2,\n \"total_commits\": 1,\n \"commits\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n ],\n \"files\": [\n {\n \"sha\": \"bbcd538c8e72b8c175046e27cc8f907076331401\",\n \"filename\": \"file1.txt\",\n \"status\": \"added\",\n \"additions\": 103,\n \"deletions\": 21,\n \"changes\": 124,\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/file1.txt?ref=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"patch\": \"@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -51767,38 +51767,38 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 101,\n \"title\": \"[A-1234] Error found in core/models.py file'\",\n \"body\": \"You have used an email that already exists for the user_email_uniq field.\\n ## DETAILS:\\n\\nThe (email)=(Octocat@github.com) already exists.\\n\\n The error was found in core/models.py in get_or_create_user at line 62.\\n\\n self.save()\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -51911,17 +51911,17 @@
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Found"
+ "description": "Found
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -52231,29 +52231,29 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": {\n \"name\": \"hello.txt\",\n \"path\": \"notes/hello.txt\",\n \"sha\": \"a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"size\": 9,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\",\n \"git_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"download_url\": \"https://raw.githubusercontent.com/octocat/HelloWorld/master/notes/hello.txt\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"git\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"html\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\"\n }\n },\n \"commit\": {\n \"sha\": \"18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"node_id\": \"MDY6Q29tbWl0MThhNDNjZDhlMWUzYTc5Yzc4NmUzZDgwOGE3M2QyM2I2ZDIxMmIxNg==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/9a21f8e2018f42ffcf369b24d2cd20bc25c9e66f\",\n \"sha\": \"9a21f8e2018f42ffcf369b24d2cd20bc25c9e66f\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/da5a433788da5c255edad7979b328b67d79f53f6\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/da5a433788da5c255edad7979b328b67d79f53f6\",\n \"sha\": \"da5a433788da5c255edad7979b328b67d79f53f6\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": {\n \"name\": \"hello.txt\",\n \"path\": \"notes/hello.txt\",\n \"sha\": \"95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"size\": 9,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\",\n \"git_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"download_url\": \"https://raw.githubusercontent.com/octocat/HelloWorld/master/notes/hello.txt\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"git\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"html\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\"\n }\n },\n \"commit\": {\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -52685,28 +52685,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": null,\n \"commit\": {\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
],
"bodyParameters": [
@@ -52941,23 +52941,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if repository contains content",
+ "description": "if repository contains content
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"contributions\": 32\n }\n]\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if repository is empty"
+ "description": "Response if repository is empty
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -53088,7 +53088,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n }\n]\n
"
}
]
@@ -53288,30 +53288,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Deployments offer a few configurable parameters with certain defaults.
\nThe ref parameter can be any named branch, tag, or SHA. At GitHub Enterprise Server we often deploy branches and verify them\nbefore we merge a pull request.
\nThe environment parameter allows deployments to be issued to different runtime environments. Teams often have\nmultiple environments for verifying their applications, such as production, staging, and qa. This parameter\nmakes it easier to track which environments have requested deployments. The default environment is production.
\nThe auto_merge parameter is used to ensure that the requested ref is not behind the repository's default branch. If\nthe ref is behind the default branch for the repository, we will attempt to merge it for you. If the merge succeeds,\nthe API will return a successful merge commit. If merge conflicts prevent the merge from succeeding, the API will\nreturn a failure response.
\nBy default, commit statuses for every submitted context must be in a success\nstate. The required_contexts parameter allows you to specify a subset of contexts that must be success, or to\nspecify contexts that have not yet been submitted. You are not required to use commit statuses to deploy. If you do\nnot require any contexts or create any commit statuses, the deployment will always succeed.
\nThe payload parameter is available for any extra information that a deployment system might need. It is a JSON text\nfield that will be passed on when a deployment event is dispatched.
\nThe task parameter is used by the deployment system to allow different execution paths. In the web world this might\nbe deploy:migrations to run schema changes on the system. In the compiled world this could be a flag to compile an\napplication with debugging enabled.
\nUsers with repo or repo_deployment scopes can create a deployment for a given ref.
\nMerged branch response
\nYou will see this response when GitHub automatically merges the base branch into the topic branch instead of creating\na deployment. This auto-merge happens when:
\n\n- Auto-merge option is enabled in the repository
\n- Topic branch does not include the latest changes on the base branch, which is
master in the response example \n- There are no merge conflicts
\n
\nIf there are no new commits in the base branch, a new request to create a deployment should give a successful\nresponse.
\nMerge conflict response
\nThis error happens when the auto_merge option is enabled and when the default branch (in this case master), can't\nbe merged into the branch that's being deployed (in this case topic-branch), due to merge conflicts.
\nFailed commit status checks
\nThis error happens when the required_contexts parameter indicates that one or more contexts need to have a success\nstatus for the commit to be deployed, but one or more of the required contexts do not have a state of success.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Simple example",
- "payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
- },
- {
- "httpStatusCode": "202",
- "httpStatusMessage": "Accepted",
- "description": "Merged branch response",
- "payload": "{\n \"message\": \"Auto-merged master into topic-branch on deployment.\"\n}\n
"
- },
- {
- "httpStatusCode": "409",
- "httpStatusMessage": "Conflict",
- "description": "Conflict when there is a merge conflict or the commit's status checks failed"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -53412,6 +53388,30 @@
"rawDescription": "Specifies if the given environment is one that end-users directly interact with. Default: `true` when `environment` is `production` and `false` otherwise.",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Simple example",
+ "payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
+ },
+ {
+ "httpStatusCode": "202",
+ "httpStatusMessage": "Accepted",
+ "description": "Merged branch response
",
+ "payload": "{\n \"message\": \"Auto-merged master into topic-branch on deployment.\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "409",
+ "httpStatusMessage": "Conflict",
+ "description": "Conflict when there is a merge conflict or the commit's status checks failed
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -53486,13 +53486,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -53562,25 +53562,25 @@
"category": "deployments",
"categoryLabel": "Deployments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "To ensure there can always be an active deployment, you can only delete an inactive deployment. Anyone with repo or repo_deployment scopes can delete an inactive deployment.
\nTo set a deployment as inactive, you must:
\n\n- Create a new deployment that is active so that the system has a record of the current state, then delete the previously active deployment.
\n- Mark the active deployment as inactive by adding any non-successful deployment status.
\n
\nFor more information, see \"Create a deployment\" and \"Create a deployment status.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "To ensure there can always be an active deployment, you can only delete an inactive deployment. Anyone with repo or repo_deployment scopes can delete an inactive deployment.
\nTo set a deployment as inactive, you must:
\n\n- Create a new deployment that is active so that the system has a record of the current state, then delete the previously active deployment.
\n- Mark the active deployment as inactive by adding any non-successful deployment status.
\n
\nFor more information, see \"Create a deployment\" and \"Create a deployment status.\"
"
+ ]
},
{
"verb": "get",
@@ -53676,13 +53676,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -53945,13 +53945,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -54038,13 +54038,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -54149,19 +54149,19 @@
"categoryLabel": "Repos",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "You can use this endpoint to trigger a webhook event called repository_dispatch when you want activity that happens outside of GitHub Enterprise Server to trigger a GitHub Actions workflow or GitHub App webhook. You must configure your GitHub Actions workflow or GitHub App to run when the repository_dispatch event occurs. For an example repository_dispatch webhook payload, see \"RepositoryDispatchEvent.\"
\nThe client_payload parameter is available for any extra information that your workflow might need. This parameter is a JSON payload that will be passed on when the webhook event is dispatched. For example, the client_payload can include a message that a user would like to send using a GitHub Actions workflow. Or the client_payload can be used as a test to debug your workflow.
\nThis endpoint requires write access to the repository by providing either:
\n\nThis input example shows how you can use the client_payload as a test to debug your workflow.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "You can use this endpoint to trigger a webhook event called repository_dispatch when you want activity that happens outside of GitHub Enterprise Server to trigger a GitHub Actions workflow or GitHub App webhook. You must configure your GitHub Actions workflow or GitHub App to run when the repository_dispatch event occurs. For an example repository_dispatch webhook payload, see \"RepositoryDispatchEvent.\"
\nThe client_payload parameter is available for any extra information that your workflow might need. This parameter is a JSON payload that will be passed on when the webhook event is dispatched. For example, the client_payload can include a message that a user would like to send using a GitHub Actions workflow. Or the client_payload can be used as a test to debug your workflow.
\nThis endpoint requires write access to the repository by providing either:
\n\nThis input example shows how you can use the client_payload as a test to debug your workflow.
",
"bodyParameters": [
{
"type": "string",
@@ -54251,7 +54251,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"environments\": [\n {\n \"id\": 161088068,\n \"node_id\": \"MDExOkVudmlyb25tZW50MTYxMDg4MDY4\",\n \"name\": \"staging\",\n \"url\": \"https://api.github.com/repos/github/hello-world/environments/staging\",\n \"html_url\": \"https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\",\n \"created_at\": \"2020-11-23T22:00:40Z\",\n \"updated_at\": \"2020-11-23T22:00:40Z\",\n \"protection_rules\": [\n {\n \"id\": 3736,\n \"node_id\": \"MDQ6R2F0ZTM3MzY=\",\n \"type\": \"wait_timer\",\n \"wait_timer\": 30\n },\n {\n \"id\": 3755,\n \"node_id\": \"MDQ6R2F0ZTM3NTU=\",\n \"type\": \"required_reviewers\",\n \"reviewers\": [\n {\n \"type\": \"User\",\n \"reviewer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"type\": \"Team\",\n \"reviewer\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n }\n ]\n },\n {\n \"id\": 3756,\n \"node_id\": \"MDQ6R2F0ZTM3NTY=\",\n \"type\": \"branch_policy\"\n }\n ],\n \"deployment_branch_policy\": {\n \"protected_branches\": false,\n \"custom_branch_policies\": true\n }\n }\n ]\n}\n
"
}
]
@@ -54330,7 +54330,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 161088068,\n \"node_id\": \"MDExOkVudmlyb25tZW50MTYxMDg4MDY4\",\n \"name\": \"staging\",\n \"url\": \"https://api.github.com/repos/github/hello-world/environments/staging\",\n \"html_url\": \"https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\",\n \"created_at\": \"2020-11-23T22:00:40Z\",\n \"updated_at\": \"2020-11-23T22:00:40Z\",\n \"protection_rules\": [\n {\n \"id\": 3736,\n \"node_id\": \"MDQ6R2F0ZTM3MzY=\",\n \"type\": \"wait_timer\",\n \"wait_timer\": 30\n },\n {\n \"id\": 3755,\n \"node_id\": \"MDQ6R2F0ZTM3NTU=\",\n \"type\": \"required_reviewers\",\n \"reviewers\": [\n {\n \"type\": \"User\",\n \"reviewer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"type\": \"Team\",\n \"reviewer\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n }\n ]\n },\n {\n \"id\": 3756,\n \"node_id\": \"MDQ6R2F0ZTM3NTY=\",\n \"type\": \"branch_policy\"\n }\n ],\n \"deployment_branch_policy\": {\n \"protected_branches\": false,\n \"custom_branch_policies\": true\n }\n}\n
"
}
]
@@ -54564,13 +54564,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 161088068,\n \"node_id\": \"MDExOkVudmlyb25tZW50MTYxMDg4MDY4\",\n \"name\": \"staging\",\n \"url\": \"https://api.github.com/repos/github/hello-world/environments/staging\",\n \"html_url\": \"https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\",\n \"created_at\": \"2020-11-23T22:00:40Z\",\n \"updated_at\": \"2020-11-23T22:00:40Z\",\n \"protection_rules\": [\n {\n \"id\": 3736,\n \"node_id\": \"MDQ6R2F0ZTM3MzY=\",\n \"type\": \"wait_timer\",\n \"wait_timer\": 30\n },\n {\n \"id\": 3755,\n \"node_id\": \"MDQ6R2F0ZTM3NTU=\",\n \"type\": \"required_reviewers\",\n \"reviewers\": [\n {\n \"type\": \"User\",\n \"reviewer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"type\": \"Team\",\n \"reviewer\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n }\n ]\n },\n {\n \"id\": 3756,\n \"node_id\": \"MDQ6R2F0ZTM3NTY=\",\n \"type\": \"branch_policy\"\n }\n ],\n \"deployment_branch_policy\": {\n \"protected_branches\": false,\n \"custom_branch_policies\": true\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` are set to the same value"
+ "description": "Validation error when the environment name is invalid or when protected_branches and custom_branch_policies in deployment_branch_policy are set to the same value
"
}
],
"bodyParameters": [
@@ -54785,15 +54785,15 @@
"subcategory": "environments",
"subcategoryLabel": "Environments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "You must authenticate using an access token with the repo scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Default response"
+ "description": "Default response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "You must authenticate using an access token with the repo scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -54874,14 +54874,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -54984,13 +54984,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
}
]
},
@@ -55091,28 +55091,28 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"language\": null,\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"push\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"organization\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"parent\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"source\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -55239,28 +55239,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/git/blobs/3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"sha\": \"3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -55337,23 +55337,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": \"Q29udGVudCBvZiB0aGUgYmxvYg==\",\n \"encoding\": \"base64\",\n \"url\": \"https://api.github.com/repos/octocat/example/git/blobs/3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"sha\": \"3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"size\": 19,\n \"node_id\": \"Q29udGVudCBvZiB0aGUgYmxvYg==\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -55643,18 +55643,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/827efc6d56897b048c772eb4087f854f46256132\",\n \"sha\": \"827efc6d56897b048c772eb4087f854f46256132\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7d1b31e74ee336d15cbd21741bc88a537ed063a0\",\n \"sha\": \"7d1b31e74ee336d15cbd21741bc88a537ed063a0\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7d1b31e74ee336d15cbd21741bc88a537ed063a0\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n },\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -55928,13 +55928,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"added readme, because im a good github citizen\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -56033,7 +56033,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/feature-a\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlLWE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/feature-a\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n },\n {\n \"ref\": \"refs/heads/feature-b\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlLWI=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/feature-b\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac\"\n }\n }\n]\n
"
}
]
@@ -56113,13 +56113,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -56263,13 +56263,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -56407,13 +56407,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -56487,19 +56487,19 @@
"subcategoryLabel": "Refs",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -56714,13 +56714,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"node_id\": \"MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw==\",\n \"tag\": \"v0.0.1\",\n \"sha\": \"940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"message\": \"initial version\",\n \"tagger\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\",\n \"date\": \"2014-11-07T22:01:45Z\"\n },\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\"\n },\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -56919,13 +56919,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"node_id\": \"MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw==\",\n \"tag\": \"v0.0.1\",\n \"sha\": \"940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"message\": \"initial version\",\n \"tagger\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\",\n \"date\": \"2014-11-07T22:01:45Z\"\n },\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\"\n },\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -57166,23 +57166,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"cd8274d15fa3ae2ab983129fb037999f264ba9a7\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/trees/cd8274d15fa3ae2ab983129fb037999f264ba9a7\",\n \"tree\": [\n {\n \"path\": \"file.rb\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"size\": 132,\n \"sha\": \"7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b\"\n }\n ],\n \"truncated\": true\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -57431,12 +57431,12 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -57524,13 +57524,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -57810,23 +57810,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -58090,13 +58090,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -58394,18 +58394,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -58682,19 +58682,19 @@
"subcategoryLabel": "Repos",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -58769,7 +58769,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -58910,14 +58910,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for a repository. To update more information about the webhook, including the active state and events, use \"Update a repository webhook.\"
\nAccess tokens must have the write:repo_hook or repo scope, and GitHub Apps must have the repository_hooks:write permission.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -58967,6 +58959,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -59062,18 +59062,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n },\n {\n \"id\": 123456789,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-04T00:57:16Z\",\n \"redelivery\": true,\n \"duration\": 0.28,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -59159,18 +59159,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456,\n \"url\": \"https://www.example.com\",\n \"request\": {\n \"headers\": {\n \"X-GitHub-Delivery\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"X-Hub-Signature-256\": \"sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"Accept\": \"*/*\",\n \"X-GitHub-Hook-ID\": \"42\",\n \"User-Agent\": \"GitHub-Hookshot/b8c71d8\",\n \"X-GitHub-Event\": \"issues\",\n \"X-GitHub-Hook-Installation-Target-ID\": \"123\",\n \"X-GitHub-Hook-Installation-Target-Type\": \"repository\",\n \"content-type\": \"application/json\",\n \"X-Hub-Signature\": \"sha1=a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\"\n },\n \"payload\": {\n \"action\": \"opened\",\n \"issue\": {\n \"body\": \"foo\"\n },\n \"repository\": {\n \"id\": 123\n }\n }\n },\n \"response\": {\n \"headers\": {\n \"Content-Type\": \"text/html;charset=utf-8\"\n },\n \"payload\": \"ok\"\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -59250,25 +59250,25 @@
"subcategory": "repo-deliveries",
"subcategoryLabel": "Repo deliveries",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Redeliver a webhook delivery for a webhook configured in a repository.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Redeliver a webhook delivery for a webhook configured in a repository.
"
+ ]
},
{
"verb": "post",
@@ -59337,20 +59337,20 @@
"subcategory": "repos",
"subcategoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the hook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the hook.
"
+ ]
},
{
"verb": "post",
@@ -59419,20 +59419,20 @@
"subcategory": "repos",
"subcategoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook is not subscribed to push events, the server will respond with 204 but no test POST will be generated.
\nNote: Previously /repos/:owner/:repo/hooks/:hook_id/test
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook is not subscribed to push events, the server will respond with 204 but no test POST will be generated.
\nNote: Previously /repos/:owner/:repo/hooks/:hook_id/test
"
+ ]
},
{
"verb": "get",
@@ -59496,18 +59496,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -59595,7 +59595,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
}
]
@@ -59720,7 +59720,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"expired\": false,\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\"\n}\n
"
}
]
@@ -59794,14 +59794,14 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -59993,23 +59993,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -60050,7 +60050,7 @@
}
],
"summary": "Create an issue",
- "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.3/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -60196,40 +60196,7 @@
"categoryLabel": "Issues",
"contentType": "application/json",
"notes": [],
- "descriptionHTML": "Any user with pull access to a repository can create an issue. If issues are disabled in the repository, the API returns a 410 Gone status.
\nThis endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "410",
- "httpStatusMessage": "Gone",
- "description": "Gone"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- },
- {
- "httpStatusCode": "503",
- "httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
- }
- ],
+ "descriptionHTML": "Any user with pull access to a repository can create an issue. If issues are disabled in the repository, the API returns a 410 Gone status.
\nThis endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
"bodyParameters": [
{
"oneOf": [
@@ -60330,6 +60297,39 @@
"rawDescription": "Logins for Users to assign to this issue. _NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise._",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "410",
+ "httpStatusMessage": "Gone",
+ "description": "Gone
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ },
+ {
+ "httpStatusCode": "503",
+ "httpStatusMessage": "Service Unavailable",
+ "description": "Service unavailable
"
+ }
]
},
{
@@ -60456,18 +60456,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -60545,13 +60545,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -60667,13 +60667,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -60746,14 +60746,14 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -60867,13 +60867,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -61007,19 +61007,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -61098,15 +61098,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE delete /repositories/:repository_id/issues/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to an issue comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE delete /repositories/:repository_id/issues/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to an issue comment.
"
+ ]
},
{
"verb": "get",
@@ -61192,13 +61192,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"issue\": {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -61275,23 +61275,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"issue\": {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"performed_via_github_app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -61367,28 +61367,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -61598,44 +61598,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Issue owners and users with push access can edit an issue.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
- },
- {
- "httpStatusCode": "301",
- "httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "410",
- "httpStatusMessage": "Gone",
- "description": "Gone"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- },
- {
- "httpStatusCode": "503",
- "httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
- }
- ],
"bodyParameters": [
{
"oneOf": [
@@ -61751,6 +61713,44 @@
"rawDescription": "Logins for Users to assign to this issue. Pass one or more user logins to _replace_ the set of assignees on this Issue. Send an empty array (`[]`) to clear all assignees from the Issue. _NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise._",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "301",
+ "httpStatusMessage": "Moved Permanently",
+ "description": "Moved permanently
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "410",
+ "httpStatusMessage": "Gone",
+ "description": "Gone
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ },
+ {
+ "httpStatusCode": "503",
+ "httpStatusMessage": "Service Unavailable",
+ "description": "Service unavailable
"
+ }
]
},
{
@@ -61871,7 +61871,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
}
]
@@ -61993,7 +61993,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
}
]
@@ -62103,18 +62103,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -62165,7 +62165,7 @@
}
],
"summary": "Create an issue comment",
- "description": "This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "This endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.3/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -62215,7 +62215,7 @@
"subcategoryLabel": "Comments",
"contentType": "application/json",
"notes": [],
- "descriptionHTML": "This endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
+ "descriptionHTML": "This endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
"bodyParameters": [
{
"type": "string",
@@ -62231,28 +62231,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -62350,13 +62350,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"performed_via_github_app\": null,\n \"label\": {\n \"name\": \"label\",\n \"color\": \"red\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -62454,13 +62454,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -62633,18 +62633,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -62817,18 +62817,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -62901,19 +62901,19 @@
"subcategoryLabel": "Labels",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -62998,18 +62998,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -63108,34 +63108,34 @@
"categoryLabel": "Issues",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Users with push access can lock an issue or pull request's conversation.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Users with push access can lock an issue or pull request's conversation.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -63220,25 +63220,25 @@
"category": "issues",
"categoryLabel": "Issues",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Users with push access can unlock an issue's conversation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Users with push access can unlock an issue's conversation.
"
+ ]
},
{
"verb": "get",
@@ -63352,18 +63352,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -63497,19 +63497,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -63588,15 +63588,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/issues/:issue_number/reactions/:reaction_id.
\nDelete a reaction to an issue.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/issues/:issue_number/reactions/:reaction_id.
\nDelete a reaction to an issue.
"
+ ]
},
{
"verb": "get",
@@ -63687,24 +63687,24 @@
"subcategoryLabel": "Timeline",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -63790,7 +63790,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n }\n]\n
"
}
]
@@ -63935,13 +63935,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -64019,13 +64019,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -64097,15 +64097,15 @@
"subcategory": "keys",
"subcategoryLabel": "Keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deploy keys are immutable. If you need to update a key, remove the key and create a new one instead.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deploy keys are immutable. If you need to update a key, remove the key and create a new one instead.
"
+ ]
},
{
"verb": "get",
@@ -64191,13 +64191,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -64341,18 +64341,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -64429,13 +64429,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -64585,7 +64585,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug%20:bug:\",\n \"name\": \"bug :bug:\",\n \"description\": \"Small bug fix required\",\n \"color\": \"b01f26\",\n \"default\": true\n}\n
"
}
]
@@ -64658,14 +64658,14 @@
"subcategoryLabel": "Labels",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -64729,7 +64729,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"C\": 78769,\n \"Python\": 7769\n}\n
"
}
]
@@ -64793,19 +64793,19 @@
"subcategoryLabel": "Lfs",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "We will return a 403 with one of the following messages:\n\n- Git LFS support not enabled because Git LFS is globally disabled.\n- Git LFS support not enabled because Git LFS is disabled for the root repository in the network.\n- Git LFS support not enabled because Git LFS is disabled for ."
+ "description": "We will return a 403 with one of the following messages:
\n\n- Git LFS support not enabled because Git LFS is globally disabled.
\n- Git LFS support not enabled because Git LFS is disabled for the root repository in the network.
\n- Git LFS support not enabled because Git LFS is disabled for .
\n
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -64866,14 +64866,14 @@
"subcategoryLabel": "Lfs",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -64937,7 +64937,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"LICENSE\",\n \"path\": \"LICENSE\",\n \"sha\": \"401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"size\": 1077,\n \"url\": \"https://api.github.com/repos/benbalter/gman/contents/LICENSE?ref=master\",\n \"html_url\": \"https://github.com/benbalter/gman/blob/master/LICENSE\",\n \"git_url\": \"https://api.github.com/repos/benbalter/gman/git/blobs/401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"download_url\": \"https://raw.githubusercontent.com/benbalter/gman/master/LICENSE?lab=true\",\n \"type\": \"file\",\n \"content\": \"VGhlIE1JVCBMaWNlbnNlIChNSVQpCgpDb3B5cmlnaHQgKGMpIDIwMTMgQmVu\\nIEJhbHRlcgoKUGVybWlzc2lvbiBpcyBoZXJlYnkgZ3JhbnRlZCwgZnJlZSBv\\nZiBjaGFyZ2UsIHRvIGFueSBwZXJzb24gb2J0YWluaW5nIGEgY29weSBvZgp0\\naGlzIHNvZnR3YXJlIGFuZCBhc3NvY2lhdGVkIGRvY3VtZW50YXRpb24gZmls\\nZXMgKHRoZSAiU29mdHdhcmUiKSwgdG8gZGVhbCBpbgp0aGUgU29mdHdhcmUg\\nd2l0aG91dCByZXN0cmljdGlvbiwgaW5jbHVkaW5nIHdpdGhvdXQgbGltaXRh\\ndGlvbiB0aGUgcmlnaHRzIHRvCnVzZSwgY29weSwgbW9kaWZ5LCBtZXJnZSwg\\ncHVibGlzaCwgZGlzdHJpYnV0ZSwgc3VibGljZW5zZSwgYW5kL29yIHNlbGwg\\nY29waWVzIG9mCnRoZSBTb2Z0d2FyZSwgYW5kIHRvIHBlcm1pdCBwZXJzb25z\\nIHRvIHdob20gdGhlIFNvZnR3YXJlIGlzIGZ1cm5pc2hlZCB0byBkbyBzbywK\\nc3ViamVjdCB0byB0aGUgZm9sbG93aW5nIGNvbmRpdGlvbnM6CgpUaGUgYWJv\\ndmUgY29weXJpZ2h0IG5vdGljZSBhbmQgdGhpcyBwZXJtaXNzaW9uIG5vdGlj\\nZSBzaGFsbCBiZSBpbmNsdWRlZCBpbiBhbGwKY29waWVzIG9yIHN1YnN0YW50\\naWFsIHBvcnRpb25zIG9mIHRoZSBTb2Z0d2FyZS4KClRIRSBTT0ZUV0FSRSBJ\\nUyBQUk9WSURFRCAiQVMgSVMiLCBXSVRIT1VUIFdBUlJBTlRZIE9GIEFOWSBL\\nSU5ELCBFWFBSRVNTIE9SCklNUExJRUQsIElOQ0xVRElORyBCVVQgTk9UIExJ\\nTUlURUQgVE8gVEhFIFdBUlJBTlRJRVMgT0YgTUVSQ0hBTlRBQklMSVRZLCBG\\nSVRORVNTCkZPUiBBIFBBUlRJQ1VMQVIgUFVSUE9TRSBBTkQgTk9OSU5GUklO\\nR0VNRU5ULiBJTiBOTyBFVkVOVCBTSEFMTCBUSEUgQVVUSE9SUyBPUgpDT1BZ\\nUklHSFQgSE9MREVSUyBCRSBMSUFCTEUgRk9SIEFOWSBDTEFJTSwgREFNQUdF\\nUyBPUiBPVEhFUiBMSUFCSUxJVFksIFdIRVRIRVIKSU4gQU4gQUNUSU9OIE9G\\nIENPTlRSQUNULCBUT1JUIE9SIE9USEVSV0lTRSwgQVJJU0lORyBGUk9NLCBP\\nVVQgT0YgT1IgSU4KQ09OTkVDVElPTiBXSVRIIFRIRSBTT0ZUV0FSRSBPUiBU\\nSEUgVVNFIE9SIE9USEVSIERFQUxJTkdTIElOIFRIRSBTT0ZUV0FSRS4K\\n\",\n \"encoding\": \"base64\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/benbalter/gman/contents/LICENSE?ref=master\",\n \"git\": \"https://api.github.com/repos/benbalter/gman/git/blobs/401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"html\": \"https://github.com/benbalter/gman/blob/master/LICENSE\"\n },\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n}\n
"
}
]
@@ -65042,18 +65042,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The branch has been successfully synced with the upstream repository",
+ "description": "The branch has been successfully synced with the upstream repository
",
"payload": "{\n \"message\": \"Successfully fetched and fast-forwarded from upstream defunkt:main\",\n \"merge_type\": \"fast-forward\",\n \"base_branch\": \"defunkt:main\"\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "The branch could not be synced because of a merge conflict"
+ "description": "The branch could not be synced because of a merge conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "The branch could not be synced for some other reason"
+ "description": "The branch could not be synced for some other reason
"
}
]
},
@@ -65196,33 +65196,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Successful Response (The resulting merge commit)",
+ "description": "Successful Response (The resulting merge commit)
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ],\n \"stats\": {\n \"additions\": 104,\n \"deletions\": 4,\n \"total\": 108\n },\n \"files\": [\n {\n \"filename\": \"file1.txt\",\n \"additions\": 10,\n \"deletions\": 2,\n \"changes\": 12,\n \"status\": \"modified\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"patch\": \"@@ -29,7 +29,7 @@\\n.....\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when already merged"
+ "description": "Response when already merged
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found when the base or head does not exist"
+ "description": "Not Found when the base or head does not exist
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when there is a merge conflict"
+ "description": "Conflict when there is a merge conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -65356,13 +65356,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -65537,18 +65537,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -65626,13 +65626,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -65814,7 +65814,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
}
]
@@ -65888,19 +65888,19 @@
"subcategoryLabel": "Milestones",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -65996,7 +65996,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
}
]
@@ -66129,7 +66129,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n }\n]\n
"
}
]
@@ -66215,19 +66215,19 @@
"subcategoryLabel": "Notifications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Marks all notifications in a repository as \"read\" removes them from the default view on GitHub Enterprise Server. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub Enterprise Server will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List repository notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
}
],
- "descriptionHTML": "Marks all notifications in a repository as \"read\" removes them from the default view on GitHub Enterprise Server. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub Enterprise Server will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List repository notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"bodyParameters": [
{
"type": "string",
@@ -66303,13 +66303,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages\",\n \"status\": \"built\",\n \"cname\": \"developer.github.com\",\n \"custom_404\": false,\n \"html_url\": \"https://developer.github.com\",\n \"source\": {\n \"branch\": \"master\",\n \"path\": \"/\"\n },\n \"public\": true,\n \"https_certificate\": {\n \"state\": \"approved\",\n \"description\": \"Certificate is approved\",\n \"domains\": [\n \"developer.github.com\"\n ],\n \"expires_at\": \"2021-05-22\"\n },\n \"https_enforced\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -66466,18 +66466,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages\",\n \"status\": \"built\",\n \"cname\": \"developer.github.com\",\n \"custom_404\": false,\n \"html_url\": \"https://developer.github.com\",\n \"source\": {\n \"branch\": \"master\",\n \"path\": \"/\"\n },\n \"public\": true,\n \"https_certificate\": {\n \"state\": \"approved\",\n \"description\": \"Certificate is approved\",\n \"domains\": [\n \"developer.github.com\"\n ],\n \"expires_at\": \"2021-05-22\"\n },\n \"https_enforced\": true\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -66717,24 +66717,24 @@
"categoryLabel": "Pages",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Updates information for a GitHub Enterprise Server Pages site. For more information, see \"About GitHub Pages.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Updates information for a GitHub Enterprise Server Pages site. For more information, see \"About GitHub Pages.
",
"bodyParameters": [
{
"type": "string or nullable",
@@ -66863,24 +66863,24 @@
"categoryLabel": "Pages",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -66964,7 +66964,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n }\n]\n
"
}
]
@@ -67031,7 +67031,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/latest\",\n \"status\": \"queued\"\n}\n
"
}
]
@@ -67098,7 +67098,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n}\n
"
}
]
@@ -67174,7 +67174,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n}\n
"
}
]
@@ -67293,7 +67293,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\"\n }\n]\n
"
}
]
@@ -67372,7 +67372,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\"\n}\n
"
}
]
@@ -67495,7 +67495,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"enabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/repos/octocat/hello-world/pre-receive-hooks/42\"\n}\n
"
}
]
@@ -67574,7 +67574,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Responds with effective values inherited from owner and/or global level.",
+ "description": "Responds with effective values inherited from owner and/or global level.
",
"payload": "{\n \"id\": 42,\n \"name\": \"Check Commits\",\n \"enforcement\": \"disabled\",\n \"configuration_url\": \"https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\"\n}\n
"
}
]
@@ -67677,33 +67677,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -67826,33 +67826,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -68005,18 +68005,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -68233,18 +68233,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -68371,7 +68371,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n }\n]\n
"
}
]
@@ -68450,13 +68450,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -68572,7 +68572,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
}
]
@@ -68645,20 +68645,20 @@
"subcategory": "comments",
"subcategoryLabel": "Comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a review comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a review comment.
"
+ ]
},
{
"verb": "get",
@@ -68772,13 +68772,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -68912,19 +68912,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69003,15 +69003,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/pulls/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a pull request review comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/pulls/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a pull request review comment.
"
+ ]
},
{
"verb": "get",
@@ -69084,23 +69084,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Pass the appropriate [media type](https://docs.github.com/enterprise-server@3.3/rest/overview/media-types/#commits-commit-comparison-and-pull-requests) to fetch diff and patch formats.",
+ "description": "Pass the appropriate media type to fetch diff and patch formats.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -69293,18 +69293,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69441,7 +69441,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n }\n]\n
"
}
]
@@ -69743,18 +69743,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69880,13 +69880,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 426899381,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -69981,7 +69981,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n]\n
"
}
]
@@ -70077,18 +70077,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"sha\": \"bbcd538c8e72b8c175046e27cc8f907076331401\",\n \"filename\": \"file1.txt\",\n \"status\": \"added\",\n \"additions\": 103,\n \"deletions\": 21,\n \"changes\": 124,\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/file1.txt?ref=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"patch\": \"@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -70158,19 +70158,19 @@
"categoryLabel": "Pulls",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if pull request has been merged"
+ "description": "Response if pull request has been merged
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if pull request has not been merged"
+ "description": "Not Found if pull request has not been merged
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -70341,35 +70341,35 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if merge was successful",
+ "description": "if merge was successful
",
"payload": "{\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "405",
"httpStatusMessage": "Method Not Allowed",
- "description": "Method Not Allowed if merge cannot be performed",
+ "description": "Method Not Allowed if merge cannot be performed
",
"payload": "{\n \"message\": \"Pull Request is not mergeable\"\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict if sha was provided and pull request head did not match",
+ "description": "Conflict if sha was provided and pull request head did not match
",
"payload": "{\n \"message\": \"Head branch was modified. Review and try the merge again.\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -70466,7 +70466,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n}\n
"
}
]
@@ -70629,18 +70629,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if user is not a collaborator"
+ "description": "Unprocessable Entity if user is not a collaborator
"
}
]
},
@@ -70766,12 +70766,12 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -70894,7 +70894,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The list of reviews returns in chronological order.",
+ "description": "The list of reviews returns in chronological order.
",
"payload": "[\n {\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -71181,18 +71181,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -71465,13 +71465,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -71596,13 +71596,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change. And add more about this.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -71689,18 +71689,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -71807,13 +71807,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -71953,18 +71953,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"DISMISSED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -72114,23 +72114,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -72241,18 +72241,18 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"message\": \"Updating pull request branch.\",\n \"url\": \"https://github.com/repos/octocat/Hello-World/pulls/53\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -72330,18 +72330,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"file\",\n \"encoding\": \"base64\",\n \"size\": 5362,\n \"name\": \"README.md\",\n \"path\": \"README.md\",\n \"content\": \"encoded content ...\",\n \"sha\": \"3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"git_url\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"html_url\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\",\n \"download_url\": \"https://raw.githubusercontent.com/octokit/octokit.rb/master/README.md\",\n \"_links\": {\n \"git\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"self\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"html\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -72430,18 +72430,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"file\",\n \"encoding\": \"base64\",\n \"size\": 5362,\n \"name\": \"README.md\",\n \"path\": \"README.md\",\n \"content\": \"encoded content ...\",\n \"sha\": \"3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"git_url\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"html_url\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\",\n \"download_url\": \"https://raw.githubusercontent.com/octokit/octokit.rb/master/README.md\",\n \"_links\": {\n \"git\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"self\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"html\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -72527,13 +72527,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -72758,13 +72758,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -72842,23 +72842,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "To download the asset's binary content, set the `Accept` header of the request to [`application/octet-stream`](https://docs.github.com/enterprise-server@3.3/rest/overview/media-types). The API will either redirect the client to the location, or stream it directly if possible. API clients should handle both a `200` or `302` response.",
+ "description": "To download the asset's binary content, set the Accept header of the request to application/octet-stream. The API will either redirect the client to the location, or stream it directly if possible. API clients should handle both a 200 or 302 response.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Found"
+ "description": "Found
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -73008,7 +73008,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -73082,14 +73082,14 @@
"subcategoryLabel": "Assets",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -73248,13 +73248,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Name and body of generated release notes",
+ "description": "Name and body of generated release notes
",
"payload": "{\n \"name\": \"Release v1.0.0 is now available!\",\n \"body\": \"##Changes in Release v1.0.0 ... ##Contributors @monalisa\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -73320,7 +73320,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
}
]
@@ -73398,13 +73398,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -73480,13 +73480,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "**Note:** This returns an `upload_url` key corresponding to the endpoint for uploading release assets. This key is a [hypermedia resource](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#hypermedia).",
+ "description": "Note: This returns an upload_url key corresponding to the endpoint for uploading release assets. This key is a hypermedia resource.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -73692,7 +73692,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
}
]
@@ -73763,15 +73763,15 @@
"category": "releases",
"categoryLabel": "Releases",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Users with push access to the repository can delete a release.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Users with push access to the repository can delete a release.
"
+ ]
},
{
"verb": "get",
@@ -73867,7 +73867,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
}
]
@@ -73986,13 +73986,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response for successful upload",
+ "description": "Response for successful upload
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Response if you upload an asset with the same filename as another uploaded asset"
+ "description": "Response if you upload an asset with the same filename as another uploaded asset
"
}
]
},
@@ -74122,19 +74122,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -74254,18 +74254,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"number\": 2,\n \"created_at\": \"2020-11-06T18:48:51Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/2\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2/locations\",\n \"state\": \"resolved\",\n \"resolution\": \"false_positive\",\n \"resolved_at\": \"2020-11-07T02:47:13Z\",\n \"resolved_by\": {\n \"login\": \"monalisa\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjI=\",\n \"avatar_url\": \"https://alambic.github.com/avatars/u/2?\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/monalisa\",\n \"followers_url\": \"https://api.github.com/users/monalisa/followers\",\n \"following_url\": \"https://api.github.com/users/monalisa/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/monalisa/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/monalisa/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/monalisa/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/monalisa/orgs\",\n \"repos_url\": \"https://api.github.com/users/monalisa/repos\",\n \"events_url\": \"https://api.github.com/users/monalisa/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/monalisa/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"secret_type\": \"adafruit_io_key\",\n \"secret\": \"aio_XXXXXXXXXXXXXXXXXXXXXXXXXXXX\"\n },\n {\n \"number\": 1,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/repo/secret-scanning/alerts/1\",\n \"html_url\": \"https://github.com/owner/repo/security/secret-scanning/1\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/1/locations\",\n \"state\": \"open\",\n \"resolution\": null,\n \"resolved_at\": null,\n \"resolved_by\": null,\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public or secret scanning is disabled for the repository"
+ "description": "Repository is public or secret scanning is disabled for the repository
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -74343,23 +74343,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/42\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42/locations\",\n \"state\": \"open\",\n \"resolution\": null,\n \"resolved_at\": null,\n \"resolved_by\": null,\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found"
+ "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -74517,23 +74517,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/42\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42/locations\",\n \"state\": \"resolved\",\n \"resolution\": \"used_in_tests\",\n \"resolved_at\": \"2020-11-16T22:42:07Z\",\n \"resolved_by\": {\n \"login\": \"monalisa\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjI=\",\n \"avatar_url\": \"https://alambic.github.com/avatars/u/2?\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/monalisa\",\n \"followers_url\": \"https://api.github.com/users/monalisa/followers\",\n \"following_url\": \"https://api.github.com/users/monalisa/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/monalisa/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/monalisa/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/monalisa/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/monalisa/orgs\",\n \"repos_url\": \"https://api.github.com/users/monalisa/repos\",\n \"events_url\": \"https://api.github.com/users/monalisa/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/monalisa/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found"
+ "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "State does not match the resolution"
+ "description": "State does not match the resolution
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -74631,18 +74631,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"type\": \"commit\",\n \"details\": {\n \"path\": \"/example/secrets.txt\",\n \"start_line\": 1,\n \"end_line\": 1,\n \"start_column\": 1,\n \"end_column\": 64,\n \"blob_sha\": \"af5626b4a114abcb82d63db7c8082c3c4756e51b\",\n \"blob_url\": \"https://api.github.com/repos/octocat/hello-world/git/blobs/af5626b4a114abcb82d63db7c8082c3c4756e51b\",\n \"commit_sha\": \"f14d7debf9775f957cf4f1e8176da0786431f72b\",\n \"commit_url\": \"https://api.github.com/repos/octocat/hello-world/git/commits/f14d7debf9775f957cf4f1e8176da0786431f72b\"\n }\n },\n {\n \"type\": \"commit\",\n \"details\": {\n \"path\": \"/example/secrets.txt\",\n \"start_line\": 5,\n \"end_line\": 5,\n \"start_column\": 1,\n \"end_column\": 64,\n \"blob_sha\": \"9def38117ab2d8355b982429aa924e268b4b0065\",\n \"blob_url\": \"https://api.github.com/repos/octocat/hello-world/git/blobs/9def38117ab2d8355b982429aa924e268b4b0065\",\n \"commit_sha\": \"588483b99a46342501d99e3f10630cfc1219ea32\",\n \"commit_url\": \"https://api.github.com/repos/octocat/hello-world/git/commits/588483b99a46342501d99e3f10630cfc1219ea32\"\n }\n },\n {\n \"type\": \"commit\",\n \"details\": {\n \"path\": \"/example/secrets.txt\",\n \"start_line\": 12,\n \"end_line\": 12,\n \"start_column\": 1,\n \"end_column\": 64,\n \"blob_sha\": \"0b33e9c66e19f7fb15137a82ff1c04c10cba6caf\",\n \"blob_url\": \"https://api.github.com/repos/octocat/hello-world/git/blobs/0b33e9c66e19f7fb15137a82ff1c04c10cba6caf\",\n \"commit_sha\": \"9def38117ab2d8355b982429aa924e268b4b0065\",\n \"commit_url\": \"https://api.github.com/repos/octocat/hello-world/git/commits/9def38117ab2d8355b982429aa924e268b4b0065\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found"
+ "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -74742,7 +74742,7 @@
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -74810,18 +74810,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Returns a weekly aggregate of the number of additions and deletions pushed to a repository.",
+ "description": "Returns a weekly aggregate of the number of additions and deletions pushed to a repository.
",
"payload": "[\n [\n 1302998400,\n 1124,\n -435\n ]\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -74889,18 +74889,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"days\": [\n 0,\n 3,\n 26,\n 20,\n 39,\n 1,\n 0\n ],\n \"total\": 89,\n \"week\": 1336280400\n }\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -74968,18 +74968,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "* `w` - Start of the week, given as a [Unix timestamp](http://en.wikipedia.org/wiki/Unix_time).\n* `a` - Number of additions\n* `d` - Number of deletions\n* `c` - Number of commits",
+ "description": "\nw - Start of the week, given as a Unix timestamp. \na - Number of additions \nd - Number of deletions \nc - Number of commits \n
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"total\": 135,\n \"weeks\": [\n {\n \"w\": 1367712000,\n \"a\": 6898,\n \"d\": 77,\n \"c\": 10\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -75047,13 +75047,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The array order is oldest week (index 0) to most recent week.",
+ "description": "The array order is oldest week (index 0) to most recent week.
",
"payload": "{\n \"all\": [\n 11,\n 21,\n 15,\n 2,\n 8,\n 1,\n 8,\n 23,\n 17,\n 21,\n 11,\n 10,\n 33,\n 91,\n 38,\n 34,\n 22,\n 23,\n 32,\n 3,\n 43,\n 87,\n 71,\n 18,\n 13,\n 5,\n 13,\n 16,\n 66,\n 27,\n 12,\n 45,\n 110,\n 117,\n 13,\n 8,\n 18,\n 9,\n 19,\n 26,\n 39,\n 12,\n 20,\n 31,\n 46,\n 91,\n 45,\n 10,\n 24,\n 9,\n 29,\n 7\n ],\n \"owner\": [\n 3,\n 2,\n 3,\n 0,\n 2,\n 0,\n 5,\n 14,\n 7,\n 9,\n 1,\n 5,\n 0,\n 48,\n 19,\n 2,\n 0,\n 1,\n 10,\n 2,\n 23,\n 40,\n 35,\n 8,\n 8,\n 2,\n 10,\n 6,\n 30,\n 0,\n 2,\n 9,\n 53,\n 104,\n 3,\n 3,\n 10,\n 4,\n 7,\n 11,\n 21,\n 4,\n 4,\n 22,\n 26,\n 63,\n 11,\n 2,\n 14,\n 1,\n 10,\n 3\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -75121,13 +75121,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "For example, `[2, 14, 25]` indicates that there were 25 total commits, during the 2:00pm hour on Tuesdays. All times are based on the time zone of individual commits.",
+ "description": "For example, [2, 14, 25] indicates that there were 25 total commits, during the 2:00pm hour on Tuesdays. All times are based on the time zone of individual commits.
",
"payload": "[\n [\n 0,\n 0,\n 5\n ],\n [\n 0,\n 1,\n 43\n ],\n [\n 0,\n 2,\n 21\n ]\n]\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -75314,7 +75314,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -75403,7 +75403,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -75472,18 +75472,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if you subscribe to the repository",
+ "description": "if you subscribe to the repository
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/repos/octocat/example/subscription\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if you don't subscribe to the repository"
+ "description": "Not Found if you don't subscribe to the repository
"
}
]
},
@@ -75601,7 +75601,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/repos/octocat/example/subscription\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\"\n}\n
"
}
]
@@ -75664,15 +75664,15 @@
"subcategory": "watching",
"subcategoryLabel": "Watching",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This endpoint should only be used to stop watching a repository. To control whether or not you wish to receive notifications from a repository, set the repository's subscription manually.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This endpoint should only be used to stop watching a repository. To control whether or not you wish to receive notifications from a repository, set the repository's subscription manually.
"
+ ]
},
{
"verb": "get",
@@ -75756,7 +75756,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"v0.1\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"zipball_url\": \"https://github.com/octocat/Hello-World/zipball/v0.1\",\n \"tarball_url\": \"https://github.com/octocat/Hello-World/tarball/v0.1\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
}
]
@@ -75828,15 +75828,15 @@
"subcategory": "contents",
"subcategoryLabel": "Contents",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a tar archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a tar archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
"
+ ]
},
{
"verb": "get",
@@ -75920,7 +75920,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
}
]
@@ -76007,13 +76007,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"names\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -76128,18 +76128,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"names\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -76271,7 +76271,7 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n}\n
"
}
]
@@ -76343,15 +76343,15 @@
"subcategory": "contents",
"subcategoryLabel": "Contents",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a zip archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a zip archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
"
+ ]
},
{
"verb": "post",
@@ -76539,7 +76539,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"allow_auto_merge\": false,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n }\n}\n
"
}
]
@@ -76614,18 +76614,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -76714,7 +76714,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"secrets\": [\n {\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n },\n {\n \"name\": \"GIST_ID\",\n \"created_at\": \"2020-01-10T10:59:22Z\",\n \"updated_at\": \"2020-01-11T11:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -76784,7 +76784,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -76864,7 +76864,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n}\n
"
}
]
@@ -76917,7 +76917,7 @@
}
],
"summary": "Create or update an environment secret",
- "description": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -76982,15 +76982,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -77082,15 +77082,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in an environment using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Default response"
+ "description": "Default response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in an environment using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -77194,28 +77194,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 7,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"name\": \"classes.js\",\n \"path\": \"src/attributes/classes.js\",\n \"sha\": \"d7212f9dee2dcc18f084d7df8f417b80846ded5a\",\n \"url\": \"https://api.github.com/repositories/167174/contents/src/attributes/classes.js?ref=825ac3773694e0cd23ee74895fd5aeb535b27da4\",\n \"git_url\": \"https://api.github.com/repositories/167174/git/blobs/d7212f9dee2dcc18f084d7df8f417b80846ded5a\",\n \"html_url\": \"https://github.com/jquery/jquery/blob/825ac3773694e0cd23ee74895fd5aeb535b27da4/src/attributes/classes.js\",\n \"repository\": {\n \"id\": 167174,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxNjcxNzQ=\",\n \"name\": \"jquery\",\n \"full_name\": \"jquery/jquery\",\n \"owner\": {\n \"login\": \"jquery\",\n \"id\": 70142,\n \"node_id\": \"MDQ6VXNlcjcwMTQy\",\n \"avatar_url\": \"https://0.gravatar.com/avatar/6906f317a4733f4379b06c32229ef02f?d=https%3A%2F%2Fidenticons.github.com%2Ff426f04f2f9813718fb806b30e0093de.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/jquery\",\n \"html_url\": \"https://github.com/jquery\",\n \"followers_url\": \"https://api.github.com/users/jquery/followers\",\n \"following_url\": \"https://api.github.com/users/jquery/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/jquery/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/jquery/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/jquery/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/jquery/orgs\",\n \"repos_url\": \"https://api.github.com/users/jquery/repos\",\n \"events_url\": \"https://api.github.com/users/jquery/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/jquery/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/jquery/jquery\",\n \"description\": \"jQuery JavaScript Library\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/jquery/jquery\",\n \"forks_url\": \"https://api.github.com/repos/jquery/jquery/forks\",\n \"keys_url\": \"https://api.github.com/repos/jquery/jquery/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/jquery/jquery/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/jquery/jquery/teams\",\n \"hooks_url\": \"https://api.github.com/repos/jquery/jquery/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/jquery/jquery/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/jquery/jquery/events\",\n \"assignees_url\": \"https://api.github.com/repos/jquery/jquery/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/jquery/jquery/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/jquery/jquery/tags\",\n \"blobs_url\": \"https://api.github.com/repos/jquery/jquery/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/jquery/jquery/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/jquery/jquery/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/jquery/jquery/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/jquery/jquery/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/jquery/jquery/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/jquery/jquery/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/jquery/jquery/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/jquery/jquery/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/jquery/jquery/subscription\",\n \"commits_url\": \"https://api.github.com/repos/jquery/jquery/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/jquery/jquery/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/jquery/jquery/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/jquery/jquery/issues/comments/{number}\",\n \"contents_url\": \"https://api.github.com/repos/jquery/jquery/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/jquery/jquery/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/jquery/jquery/merges\",\n \"archive_url\": \"https://api.github.com/repos/jquery/jquery/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/jquery/jquery/downloads\",\n \"issues_url\": \"https://api.github.com/repos/jquery/jquery/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/jquery/jquery/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/jquery/jquery/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/jquery/jquery/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/jquery/jquery/labels{/name}\",\n \"deployments_url\": \"http://api.github.com/repos/octocat/Hello-World/deployments\",\n \"releases_url\": \"http://api.github.com/repos/octocat/Hello-World/releases{/id}\"\n },\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -77322,13 +77322,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"sha\": \"bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"html_url\": \"https://github.com/octocat/Spoon-Knife/commit/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"author\": {\n \"date\": \"2014-02-04T14:38:36-08:00\",\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"date\": \"2014-02-12T15:18:55-08:00\",\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"message\": \"Create styles.css and updated README\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/trees/a639e96f9038797fba6e0469f94a4b0cc459fa68\",\n \"sha\": \"a639e96f9038797fba6e0469f94a4b0cc459fa68\"\n },\n \"comment_count\": 8\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 583231,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/583231?v=3\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {},\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/a30c19e3f13765a3b48829788bc1cb8b4e95cee4\",\n \"html_url\": \"https://github.com/octocat/Spoon-Knife/commit/a30c19e3f13765a3b48829788bc1cb8b4e95cee4\",\n \"sha\": \"a30c19e3f13765a3b48829788bc1cb8b4e95cee4\"\n }\n ],\n \"repository\": {\n \"id\": 1300192,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMzAwMTky\",\n \"name\": \"Spoon-Knife\",\n \"full_name\": \"octocat/Spoon-Knife\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 583231,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/583231?v=3\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Spoon-Knife\",\n \"description\": \"This repo is for demonstration purposes only.\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/forks\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/events\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/merges\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/deployments\"\n },\n \"score\": 1,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -77444,28 +77444,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 280,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132\",\n \"repository_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit\",\n \"labels_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/comments\",\n \"events_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/events\",\n \"html_url\": \"https://github.com/batterseapower/pinyin-toolkit/issues/132\",\n \"id\": 35802,\n \"node_id\": \"MDU6SXNzdWUzNTgwMg==\",\n \"number\": 132,\n \"title\": \"Line Number Indexes Beyond 20 Not Displayed\",\n \"user\": {\n \"login\": \"Nick3C\",\n \"id\": 90254,\n \"node_id\": \"MDQ6VXNlcjkwMjU0\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/934442aadfe3b2f4630510de416c5718?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Nick3C\",\n \"html_url\": \"https://github.com/Nick3C\",\n \"followers_url\": \"https://api.github.com/users/Nick3C/followers\",\n \"following_url\": \"https://api.github.com/users/Nick3C/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Nick3C/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Nick3C/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Nick3C/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Nick3C/orgs\",\n \"repos_url\": \"https://api.github.com/users/Nick3C/repos\",\n \"events_url\": \"https://api.github.com/users/Nick3C/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Nick3C/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"labels\": [\n {\n \"id\": 4,\n \"node_id\": \"MDU6TGFiZWw0\",\n \"url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/labels/bug\",\n \"name\": \"bug\",\n \"color\": \"ff0000\"\n }\n ],\n \"state\": \"open\",\n \"assignee\": null,\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"comments\": 15,\n \"created_at\": \"2009-07-12T20:10:41Z\",\n \"updated_at\": \"2009-07-19T09:23:43Z\",\n \"closed_at\": null,\n \"pull_request\": {\n \"url\": \"https://api/github.com/repos/octocat/Hello-World/pull/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"body\": \"...\",\n \"score\": 1,\n \"locked\": true,\n \"author_association\": \"COLLABORATOR\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -77582,28 +77582,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"id\": 418327088,\n \"node_id\": \"MDU6TGFiZWw0MTgzMjcwODg=\",\n \"url\": \"https://api.github.com/repos/octocat/linguist/labels/enhancement\",\n \"name\": \"enhancement\",\n \"color\": \"84b6eb\",\n \"default\": true,\n \"description\": \"New feature or request.\",\n \"score\": 1\n },\n {\n \"id\": 418327086,\n \"node_id\": \"MDU6TGFiZWw0MTgzMjcwODY=\",\n \"url\": \"https://api.github.com/repos/octocat/linguist/labels/bug\",\n \"name\": \"bug\",\n \"color\": \"ee0701\",\n \"default\": true,\n \"description\": \"Something isn't working.\",\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -77712,23 +77712,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 40,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"id\": 3081286,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkzMDgxMjg2\",\n \"name\": \"Tetris\",\n \"full_name\": \"dtrupenn/Tetris\",\n \"owner\": {\n \"login\": \"dtrupenn\",\n \"id\": 872147,\n \"node_id\": \"MDQ6VXNlcjg3MjE0Nw==\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/e7956084e75f239de85d3a31bc172ace?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/dtrupenn\",\n \"received_events_url\": \"https://api.github.com/users/dtrupenn/received_events\",\n \"type\": \"User\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"site_admin\": true\n },\n \"private\": false,\n \"html_url\": \"https://github.com/dtrupenn/Tetris\",\n \"description\": \"A C implementation of Tetris using Pennsim through LC4\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/dtrupenn/Tetris\",\n \"created_at\": \"2012-01-01T00:31:50Z\",\n \"updated_at\": \"2013-01-05T17:58:47Z\",\n \"pushed_at\": \"2012-01-01T00:37:02Z\",\n \"homepage\": \"https://github.com\",\n \"size\": 524,\n \"stargazers_count\": 1,\n \"watchers_count\": 1,\n \"language\": \"Assembly\",\n \"forks_count\": 0,\n \"open_issues_count\": 0,\n \"master_branch\": \"master\",\n \"default_branch\": \"master\",\n \"score\": 1,\n \"archive_url\": \"https://api.github.com/repos/dtrupenn/Tetris/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/dtrupenn/Tetris/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/dtrupenn/Tetris/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/dtrupenn/Tetris/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/dtrupenn/Tetris/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/dtrupenn/Tetris/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/dtrupenn/Tetris/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/dtrupenn/Tetris/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/dtrupenn/Tetris/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/dtrupenn/Tetris/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/dtrupenn/Tetris/downloads\",\n \"events_url\": \"https://api.github.com/repos/dtrupenn/Tetris/events\",\n \"forks_url\": \"https://api.github.com/repos/dtrupenn/Tetris/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/tags{/sha}\",\n \"git_url\": \"git:github.com/dtrupenn/Tetris.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/dtrupenn/Tetris/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/dtrupenn/Tetris/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/dtrupenn/Tetris/languages\",\n \"merges_url\": \"https://api.github.com/repos/dtrupenn/Tetris/merges\",\n \"milestones_url\": \"https://api.github.com/repos/dtrupenn/Tetris/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/dtrupenn/Tetris/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/dtrupenn/Tetris/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/dtrupenn/Tetris/releases{/id}\",\n \"ssh_url\": \"git@github.com:dtrupenn/Tetris.git\",\n \"stargazers_url\": \"https://api.github.com/repos/dtrupenn/Tetris/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/dtrupenn/Tetris/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/dtrupenn/Tetris/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/dtrupenn/Tetris/subscription\",\n \"tags_url\": \"https://api.github.com/repos/dtrupenn/Tetris/tags\",\n \"teams_url\": \"https://api.github.com/repos/dtrupenn/Tetris/teams\",\n \"trees_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/dtrupenn/Tetris.git\",\n \"mirror_url\": \"git:git.example.com/dtrupenn/Tetris\",\n \"hooks_url\": \"https://api.github.com/repos/dtrupenn/Tetris/hooks\",\n \"svn_url\": \"https://svn.github.com/dtrupenn/Tetris\",\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1,\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_pages\": true,\n \"has_wiki\": true,\n \"has_downloads\": true,\n \"archived\": true,\n \"disabled\": true,\n \"visibility\": \"private\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -77806,13 +77806,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 6,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"name\": \"ruby\",\n \"display_name\": \"Ruby\",\n \"short_description\": \"Ruby is a scripting language designed for simplified object-oriented programming.\",\n \"description\": \"Ruby was developed by Yukihiro \\\"Matz\\\" Matsumoto in 1995 with the intent of having an easily readable programming language. It is integrated with the Rails framework to create dynamic web-applications. Ruby's syntax is similar to that of Perl and Python.\",\n \"created_by\": \"Yukihiro Matsumoto\",\n \"released\": \"December 21, 1995\",\n \"created_at\": \"2016-11-28T22:03:59Z\",\n \"updated_at\": \"2017-10-30T18:16:32Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"rails\",\n \"display_name\": \"Rails\",\n \"short_description\": \"Ruby on Rails (Rails) is a web application framework written in Ruby.\",\n \"description\": \"Ruby on Rails (Rails) is a web application framework written in Ruby. It is meant to help simplify the building of complex websites.\",\n \"created_by\": \"David Heinemeier Hansson\",\n \"released\": \"December 13 2005\",\n \"created_at\": \"2016-12-09T17:03:50Z\",\n \"updated_at\": \"2017-10-30T16:20:19Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"python\",\n \"display_name\": \"Python\",\n \"short_description\": \"Python is a dynamically typed programming language.\",\n \"description\": \"Python is a dynamically typed programming language designed by Guido Van Rossum. Much like the programming language Ruby, Python was designed to be easily read by programmers. Because of its large following and many libraries, Python can be implemented and used to do anything from webpages to scientific research.\",\n \"created_by\": \"Guido van Rossum\",\n \"released\": \"February 20, 1991\",\n \"created_at\": \"2016-12-07T00:07:02Z\",\n \"updated_at\": \"2017-10-27T22:45:43Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"jekyll\",\n \"display_name\": \"Jekyll\",\n \"short_description\": \"Jekyll is a simple, blog-aware static site generator.\",\n \"description\": \"Jekyll is a blog-aware, site generator written in Ruby. It takes raw text files, runs it through a renderer and produces a publishable static website.\",\n \"created_by\": \"Tom Preston-Werner\",\n \"released\": \"2008\",\n \"created_at\": \"2016-12-16T21:53:08Z\",\n \"updated_at\": \"2017-10-27T19:00:24Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"sass\",\n \"display_name\": \"Sass\",\n \"short_description\": \"Sass is a stable extension to classic CSS.\",\n \"description\": \"Sass is a stylesheet language with a main implementation in Ruby. It is an extension of CSS that makes improvements to the old stylesheet format, such as being able to declare variables and using a cleaner nesting syntax.\",\n \"created_by\": \"Hampton Catlin, Natalie Weizenbaum, Chris Eppstein\",\n \"released\": \"November 28, 2006\",\n \"created_at\": \"2016-12-16T21:53:45Z\",\n \"updated_at\": \"2018-01-16T16:30:40Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"homebrew\",\n \"display_name\": \"Homebrew\",\n \"short_description\": \"Homebrew is a package manager for macOS.\",\n \"description\": \"Homebrew is a package manager for Apple's macOS operating system. It simplifies the installation of software and is popular in the Ruby on Rails community.\",\n \"created_by\": \"Max Howell\",\n \"released\": \"2009\",\n \"created_at\": \"2016-12-17T20:30:44Z\",\n \"updated_at\": \"2018-02-06T16:14:56Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -77920,23 +77920,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 12,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"login\": \"mojombo\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/mojombo\",\n \"html_url\": \"https://github.com/mojombo\",\n \"followers_url\": \"https://api.github.com/users/mojombo/followers\",\n \"subscriptions_url\": \"https://api.github.com/users/mojombo/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/mojombo/orgs\",\n \"repos_url\": \"https://api.github.com/users/mojombo/repos\",\n \"received_events_url\": \"https://api.github.com/users/mojombo/received_events\",\n \"type\": \"User\",\n \"score\": 1,\n \"following_url\": \"https://api.github.com/users/mojombo/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/mojombo/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/mojombo/starred{/owner}{/repo}\",\n \"events_url\": \"https://api.github.com/users/mojombo/events{/privacy}\",\n \"site_admin\": true\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -77985,7 +77985,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"running\",\n \"progress\": [\n {\n \"status\": \"DONE\",\n \"key\": \"Appliance core components\"\n },\n {\n \"status\": \"DONE\",\n \"key\": \"GitHub utilities\"\n },\n {\n \"status\": \"DONE\",\n \"key\": \"GitHub applications\"\n },\n {\n \"status\": \"CONFIGURING\",\n \"key\": \"GitHub services\"\n },\n {\n \"status\": \"PENDING\",\n \"key\": \"Reloading appliance services\"\n }\n ]\n}\n
"
}
]
@@ -78029,15 +78029,15 @@
"subcategory": "management-console",
"subcategoryLabel": "Management console",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This endpoint allows you to start a configuration process at any time for your updated settings to take effect:
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This endpoint allows you to start a configuration process at any time for your updated settings to take effect:
"
+ ]
},
{
"verb": "get",
@@ -78084,7 +78084,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"scheduled\",\n \"scheduled_time\": \"Tuesday, January 22 at 15:34 -0800\",\n \"connection_services\": [\n {\n \"name\": \"git operations\",\n \"number\": 0\n },\n {\n \"name\": \"mysql queries\",\n \"number\": 233\n },\n {\n \"name\": \"resque jobs\",\n \"number\": 54\n }\n ]\n}\n
"
}
]
@@ -78172,7 +78172,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"status\": \"scheduled\",\n \"scheduled_time\": \"Tuesday, January 22 at 15:34 -0800\",\n \"connection_services\": [\n {\n \"name\": \"git operations\",\n \"number\": 0\n },\n {\n \"name\": \"mysql queries\",\n \"number\": 233\n },\n {\n \"name\": \"resque jobs\",\n \"number\": 54\n }\n ]\n}\n
"
}
]
@@ -78222,7 +78222,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enterprise\": {\n \"private_mode\": false,\n \"public_pages\": false,\n \"subdomain_isolation\": true,\n \"signup_enabled\": false,\n \"github_hostname\": \"ghe.local\",\n \"identicons_host\": \"dotcom\",\n \"http_proxy\": null,\n \"auth_mode\": \"default\",\n \"expire_sessions\": false,\n \"admin_password\": null,\n \"configuration_id\": 1401777404,\n \"configuration_run_count\": 4,\n \"avatar\": {\n \"enabled\": false,\n \"uri\": \"\"\n },\n \"customer\": {\n \"name\": \"GitHub\",\n \"email\": \"stannis@themannis.biz\",\n \"uuid\": \"af6cac80-e4e1-012e-d822-1231380e52e9\",\n \"secret_key_data\": \"-----BEGIN PGP PRIVATE KEY BLOCK-----\\nVersion: GnuPG v1.4.10 (GNU/Linux)\\n\\nlQcYBE5TCgsBEACk4yHpUcapplebaumBMXYMiLF+nCQ0lxpx...\\n-----END PGP PRIVATE KEY BLOCK-----\\n\",\n \"public_key_data\": \"-----BEGIN PGP PUBLIC KEY BLOCK-----\\nVersion: GnuPG v1.4.10 (GNU/Linux)\\n\\nmI0ETqzZYgEEALSe6snowdenXyqvLfSQ34HWD6C7....\\n-----END PGP PUBLIC KEY BLOCK-----\\n\"\n },\n \"license\": {\n \"seats\": 0,\n \"evaluation\": false,\n \"perpetual\": false,\n \"unlimited_seating\": true,\n \"support_key\": \"ssh-rsa AAAAB3N....\",\n \"ssh_allowed\": true,\n \"cluster_support\": false,\n \"expire_at\": \"2016-04-27T00:00:00-07:00\"\n },\n \"github_ssl\": {\n \"enabled\": false,\n \"cert\": null,\n \"key\": null\n },\n \"ldap\": {\n \"host\": null,\n \"port\": 0,\n \"base\": [],\n \"uid\": null,\n \"bind_dn\": null,\n \"password\": null,\n \"method\": \"Plain\",\n \"search_strategy\": \"detect\",\n \"user_groups\": [],\n \"admin_group\": null,\n \"virtual_attribute_enabled\": false,\n \"recursive_group_search\": false,\n \"posix_support\": true,\n \"user_sync_emails\": false,\n \"user_sync_keys\": false,\n \"user_sync_interval\": 4,\n \"team_sync_interval\": 4,\n \"sync_enabled\": false,\n \"reconciliation\": {\n \"user\": null,\n \"org\": null\n },\n \"profile\": {\n \"uid\": \"uid\",\n \"name\": null,\n \"mail\": null,\n \"key\": null\n }\n },\n \"cas\": {\n \"url\": null\n },\n \"saml\": {\n \"sso_url\": null,\n \"certificate\": null,\n \"certificate_path\": null,\n \"issuer\": null,\n \"idp_initiated_sso\": false,\n \"disable_admin_demote\": false\n },\n \"github_oauth\": {\n \"client_id\": \"12313412\",\n \"client_secret\": \"kj123131132\",\n \"organization_name\": \"Homestar Runners\",\n \"organization_team\": \"homestarrunners/characters\"\n },\n \"smtp\": {\n \"enabled\": true,\n \"address\": \"smtp.example.com\",\n \"authentication\": \"plain\",\n \"port\": \"1234\",\n \"domain\": \"blah\",\n \"username\": \"foo\",\n \"user_name\": \"mr_foo\",\n \"enable_starttls_auto\": true,\n \"password\": \"bar\",\n \"discard-to-noreply-address\": true,\n \"support_address\": \"enterprise@github.com\",\n \"support_address_type\": \"email\",\n \"noreply_address\": \"noreply@github.com\"\n },\n \"ntp\": {\n \"primary_server\": \"0.pool.ntp.org\",\n \"secondary_server\": \"1.pool.ntp.org\"\n },\n \"timezone\": null,\n \"snmp\": {\n \"enabled\": false,\n \"community\": \"\"\n },\n \"syslog\": {\n \"enabled\": false,\n \"server\": null,\n \"protocol_name\": \"udp\"\n },\n \"assets\": null,\n \"pages\": {\n \"enabled\": true\n },\n \"collectd\": {\n \"enabled\": false,\n \"server\": null,\n \"port\": 0,\n \"encryption\": null,\n \"username\": null,\n \"password\": null\n },\n \"mapping\": {\n \"enabled\": true,\n \"tileserver\": null,\n \"basemap\": \"company.map-qsz2zrvs\",\n \"token\": null\n },\n \"load_balancer\": null\n },\n \"run_list\": [\n \"recipe[enterprise-configure]\"\n ]\n}\n
"
}
]
@@ -78294,14 +78294,14 @@
"subcategoryLabel": "Management console",
"contentType": "application/x-www-form-urlencoded",
"notes": [],
+ "descriptionHTML": "For a list of the available settings, see the Get settings endpoint.
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "For a list of the available settings, see the Get settings endpoint.
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"bodyParameters": [
{
"type": "string",
@@ -78359,7 +78359,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n }\n]\n
"
}
]
@@ -78447,7 +78447,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n }\n]\n
"
}
]
@@ -78535,7 +78535,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n },\n {\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAAB...\",\n \"pretty-print\": \"ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\"\n }\n]\n
"
}
]
@@ -78622,14 +78622,14 @@
"subcategoryLabel": "Management console",
"contentType": "application/x-www-form-urlencoded",
"notes": [],
+ "descriptionHTML": "When you boot a GitHub instance for the first time, you can use the following endpoint to upload a license.
\nNote that you need to POST to /setup/api/configure to start the actual configuration process.
\nWhen using this endpoint, your GitHub instance must have a password set. This can be accomplished two ways:
\n\n- If you're working directly with the API before accessing the web interface, you must pass in the password parameter to set your password.
\n- If you set up your instance via the web interface before accessing the API, your calls to this endpoint do not need the password parameter.
\n
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "When you boot a GitHub instance for the first time, you can use the following endpoint to upload a license.
\nNote that you need to POST to /setup/api/configure to start the actual configuration process.
\nWhen using this endpoint, your GitHub instance must have a password set. This can be accomplished two ways:
\n\n- If you're working directly with the API before accessing the web interface, you must pass in the password parameter to set your password.
\n- If you set up your instance via the web interface before accessing the API, your calls to this endpoint do not need the password parameter.
\n
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"bodyParameters": [
{
"type": "string",
@@ -78720,14 +78720,14 @@
"subcategoryLabel": "Management console",
"contentType": "application/x-www-form-urlencoded",
"notes": [],
+ "descriptionHTML": "This API upgrades your license and also triggers the configuration process.
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "This API upgrades your license and also triggers the configuration process.
\nNote: The request body for this operation must be submitted as application/x-www-form-urlencoded data. You can submit a parameter value as a string, or you can use a tool such as curl to submit a parameter value as the contents of a text file. For more information, see the curl documentation.
",
"bodyParameters": [
{
"type": "string",
@@ -78796,13 +78796,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -78996,29 +78996,29 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -79072,25 +79072,25 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a team endpoint.
\nTo delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a team endpoint.
\nTo delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
"
+ ]
},
{
"verb": "get",
@@ -79185,7 +79185,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -79327,7 +79327,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -79399,7 +79399,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -79524,7 +79524,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 1,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Welcome to our first team post\",\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -79590,15 +79590,15 @@
"subcategory": "discussions",
"subcategoryLabel": "Discussions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion endpoint.
\nDelete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion endpoint.
\nDelete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -79702,7 +79702,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -79813,7 +79813,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -79894,7 +79894,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -80013,7 +80013,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like pineapples?\",\n \"body_html\": \"<p>Do you like pineapples?</p>\",\n \"body_version\": \"e6907b24d9c93cc0c5024a7af5888116\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -80088,15 +80088,15 @@
"subcategory": "discussion-comments",
"subcategoryLabel": "Discussion comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion comment endpoint.
\nDeletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion comment endpoint.
\nDeletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -80212,7 +80212,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -80349,7 +80349,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -80459,7 +80459,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -80587,7 +80587,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -80686,13 +80686,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -80757,20 +80757,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Get team member\" endpoint (described below) is deprecated.
\nWe recommend using the Get team membership for a user endpoint instead. It allows you to get both active and pending memberships.
\nTo list members in a team, the team must be visible to the authenticated user.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if user is a member"
+ "description": "if user is a member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if user is not a member"
+ "description": "if user is not a member
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Get team member\" endpoint (described below) is deprecated.
\nWe recommend using the Get team membership for a user endpoint instead. It allows you to get both active and pending memberships.
\nTo list members in a team, the team must be visible to the authenticated user.
"
+ ]
},
{
"verb": "put",
@@ -80833,30 +80833,30 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Add team member\" endpoint (described below) is deprecated.
\nWe recommend using the Add or update team membership for a user endpoint instead. It allows you to invite new organization members to your teams.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo add someone to a team, the authenticated user must be an organization owner or a team maintainer in the team they're changing. The person being added to the team must be a member of the team's organization.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team synchronization is set up"
+ "description": "Not Found if team synchronization is set up
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team or you attempt to add a user to a team when they are not a member of at least one other team in the same organization"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team or you attempt to add a user to a team when they are not a member of at least one other team in the same organization
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Add team member\" endpoint (described below) is deprecated.
\nWe recommend using the Add or update team membership for a user endpoint instead. It allows you to invite new organization members to your teams.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo add someone to a team, the authenticated user must be an organization owner or a team maintainer in the team they're changing. The person being added to the team must be a member of the team's organization.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -80919,20 +80919,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Remove team member\" endpoint (described below) is deprecated.
\nWe recommend using the Remove team membership for a user endpoint instead. It allows you to remove both active and pending memberships.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a team member, the authenticated user must have 'admin' permissions to the team or be an owner of the org that the team is associated with. Removing a team member does not delete the user, it just removes them from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team synchronization is setup"
+ "description": "Not Found if team synchronization is setup
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Remove team member\" endpoint (described below) is deprecated.
\nWe recommend using the Remove team membership for a user endpoint instead. It allows you to remove both active and pending memberships.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a team member, the authenticated user must have 'admin' permissions to the team or be an owner of the org that the team is associated with. Removing a team member does not delete the user, it just removes them from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
"
+ ]
},
{
"verb": "get",
@@ -81007,7 +81007,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -81126,17 +81126,17 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team
"
}
]
},
@@ -81201,20 +81201,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove team membership for a user endpoint.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "if team synchronization is set up"
+ "description": "if team synchronization is set up
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove team membership for a user endpoint.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub Enterprise Server.\"
"
+ ]
},
{
"verb": "get",
@@ -81292,13 +81292,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -81367,13 +81367,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if project is not managed by this team"
+ "description": "Not Found if project is not managed by this team
"
}
]
},
@@ -81484,23 +81484,23 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if the project is not owned by the organization",
+ "description": "Forbidden if the project is not owned by the organization
",
"payload": "{\n \"message\": \"Must have admin rights to Repository.\",\n \"documentation_url\": \"https://docs.github.com/enterprise-server@3.3/rest/reference/teams#add-or-update-team-project-permissions\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -81563,30 +81563,30 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a project from a team endpoint.
\nRemoves an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. Note: This endpoint removes the project from the team, but does not delete it.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a project from a team endpoint.
\nRemoves an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. Note: This endpoint removes the project from the team, but does not delete it.
"
+ ]
},
{
"verb": "get",
@@ -81664,13 +81664,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -81748,18 +81748,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Alternative response with extra repository information",
+ "description": "Alternative response with extra repository information
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"maintain\": false,\n \"push\": false,\n \"triage\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"triage\": false,\n \"push\": false,\n \"maintain\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if repository is managed by this team"
+ "description": "Response if repository is managed by this team
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if repository is not managed by this team"
+ "description": "Not Found if repository is not managed by this team
"
}
]
},
@@ -81858,24 +81858,24 @@
"categoryLabel": "Teams",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new \"Add or update team repository permissions\" endpoint.
\nTo add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new \"Add or update team repository permissions\" endpoint.
\nTo add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -81961,15 +81961,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a repository from a team endpoint.
\nIf the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. NOTE: This does not delete the repository, it just removes it from the team.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a repository from a team endpoint.
\nIf the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. NOTE: This does not delete the repository, it just removes it from the team.
"
+ ]
},
{
"verb": "get",
@@ -82047,23 +82047,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if child teams exist",
+ "description": "if child teams exist
",
"payload": "[\n {\n \"id\": 2,\n \"node_id\": \"MDQ6VGVhbTI=\",\n \"url\": \"https://api.github.com/teams/2\",\n \"name\": \"Original Roster\",\n \"slug\": \"original-roster\",\n \"description\": \"Started it all.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/2/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/2/repos\",\n \"parent\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n },\n \"html_url\": \"https://github.com/orgs/rails/teams/core\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -82122,17 +82122,17 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -82351,33 +82351,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"name\": \"monalisa octocat\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"hireable\": false,\n \"bio\": \"There once was...\",\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2008-01-14T04:33:35Z\",\n \"private_gists\": 81,\n \"total_private_repos\": 100,\n \"owned_private_repos\": 100,\n \"disk_usage\": 10000,\n \"collaborators\": 8,\n \"two_factor_authentication\": true,\n \"plan\": {\n \"name\": \"Medium\",\n \"space\": 400,\n \"private_repos\": 20,\n \"collaborators\": 0\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -82447,28 +82447,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"email\": \"octocat@github.com\",\n \"verified\": true,\n \"primary\": true,\n \"visibility\": \"public\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -82585,33 +82585,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"email\": \"octocat@octocat.org\",\n \"primary\": false,\n \"verified\": false,\n \"visibility\": \"public\"\n },\n {\n \"email\": \"octocat@github.com\",\n \"primary\": false,\n \"verified\": false,\n \"visibility\": null\n },\n {\n \"email\": \"mona@github.com\",\n \"primary\": false,\n \"verified\": false,\n \"visibility\": null\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -82705,39 +82705,39 @@
"subcategoryLabel": "Emails",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "This endpoint is accessible with the user scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "This endpoint is accessible with the user scope.
",
"bodyParameters": [
{
"description": "Required. Email addresses associated with the GitHub user account.
",
@@ -82821,23 +82821,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -82907,23 +82907,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -82977,34 +82977,34 @@
"subcategoryLabel": "Followers",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if the person is followed by the authenticated user"
+ "description": "if the person is followed by the authenticated user
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if the person is not followed by the authenticated user"
+ "description": "if the person is not followed by the authenticated user
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -83055,35 +83055,35 @@
"subcategory": "followers",
"subcategoryLabel": "Followers",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nFollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nFollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
"
+ ]
},
{
"verb": "delete",
@@ -83134,35 +83134,35 @@
"subcategory": "followers",
"subcategoryLabel": "Followers",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Unfollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Unfollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
"
+ ]
},
{
"verb": "get",
@@ -83230,28 +83230,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"string\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -83335,33 +83335,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"\\\"-----BEGIN PGP PUBLIC KEY BLOCK-----\\\\nVersion: GnuPG v2\\\\n\\\\nmQENBFayYZ0BCAC4hScoJXXpyR+MXGcrBxElqw3FzCVvkViuyeko+Jp76QJhg8kr\\\\nucRTxbnOoHfda/FmilEa/wxf9ch5/PSrrL26FxEoPHhJolp8fnIDLQeITn94NYdB\\\\nZtnnEKslpPrG97qSUWIchvyqCPtvOb8+8fWvGx9K/ZWcEEdh1X8+WFR2jMENMeoX\\\\nwxHWQoPnS7LpX/85/M7VUcJxvDVfv+eHsnQupmE5bGarKNih0oMe3LbdN3qA5PTz\\\\nSCm6Iudar1VsQ+xTz08ymL7t4pnEtLguQ7EyatFHCjxNblv5RzxoL0tDgN3HqoDz\\\\nc7TEA+q4RtDQl9amcvQ95emnXmZ974u7UkYdABEBAAG0HlNvbWUgVXNlciA8c29t\\\\nZXVzZXJAZ21haWwuY29tPokBOAQTAQIAIgUCVrJhnQIbAwYLCQgHAwIGFQgCCQoL\\\\nBBYCAwECHgECF4AACgkQMmLv8lug0nAViQgArWjI55+7p48URr2z9Jvak+yrBTx1\\\\nzkufltQAnHTJkq+Kl9dySSmTnOop8o3rE4++IOpYV5Y36PkKf9EZMk4n1RQiDPKE\\\\nAFtRVTkRaoWzOir9KQXJPfhKrl01j/QzY+utfiMvUoBJZ9ybq8Pa885SljW9lbaX\\\\nIYw+hl8ZdJ2KStvGrEyfQvRyq3aN5c9TV//4BdGnwx7Qabq/U+G18lizG6f/yq15\\\\ned7t0KELaCfeKPvytp4VE9/z/Ksah/h3+Qilx07/oG2Ae5kC1bEC9coD/ogPUhbv\\\\nb2bsBIoY9E9YwsLoif2lU+o1t76zLgUktuNscRRUKobW028H1zuFS/XQhrkBDQRW\\\\nsmGdAQgApnyyv3i144OLYy0O4UKQxd3e10Y3WpDwfnGIBefAI1m7RxnUxBag/DsU\\\\n7gi9qLEC4VHSfq4eiNfr1LJOyCL2edTgCWFgBhVjbXjZe6YAOrAnhxwCErnN0Y7N\\\\n6s8wVh9fObSOyf8ZE6G7JeKpcq9Q6gd/KxagfD48a1v+fyRHpyQc6J9pUEmtrDJ7\\\\nBjmsd2VWzLBvNWdHyxDNtZweIaqIO9VUYYpr1mtTliNBOZLUelmgrt7HBRcJpWMA\\\\nS8muVVbuP5MK0trLBq/JB8qUH3zRzB/PhMgzmkIfjEK1VYDWm4E8DYyTWEJcHqkb\\\\neqFsNjrIlwPaA122BWC6gUOPwwH+oQARAQABiQEfBBgBAgAJBQJWsmGdAhsMAAoJ\\\\nEDJi7/JboNJwAyAIALd4xcdmGbZD98gScJzqwzkOMcO8zFHqHNvJ42xIFvGny7c0\\\\n1Rx7iyrdypOby5AxE+viQcjG4rpLZW/xKYBNGrCfDyQO7511I0v8x20EICMlMfD/\\\\nNrWQCzesEPcUlKTP07d+sFyP8AyseOidbzY/92CpskTgdSBjY/ntLSaoknl/fjJE\\\\nQM8OkPqU7IraO1Jzzdnm20d5PZL9+PIwIWdSTedU/vBMTJyNcoqvSfKf1wNC66XP\\\\nhqfYgXJE564AdWZKA3C0IyCqiv+LHwxLnUHio1a4/r91C8KPzxs6tGxRDjXLd7ms\\\\nuYFGWymiUGOE/giHlcxdYcHzwLnPDliMQOLiTkK5AQ0EVuxMygEIAOD+bW1cDTmE\\\\nBxh5JECoqeHuwgl6DlLhnubWPkQ4ZeRzBRAsFcEJQlwlJjrzFDicL+lnm6Qq4tt0\\\\n560TwHdf15/AKTZIZu7H25axvGNzgeaUkJEJdYAq9zTKWwX7wKyzBszi485nQg97\\\\nMfAqwhMpDW0Qqf8+7Ug+WEmfBSGv9uL3aQC6WEeIsHfri0n0n8v4XgwhfShXguxO\\\\nCsOztEsuW7WWKW9P4TngKKv4lCHdPlV6FwxeMzODBJvc2fkHVHnqc0PqszJ5xcF8\\\\n6gZCpMM027SbpeYWCAD5zwJyYP9ntfO1p2HjnQ1dZaP9FeNcO7uIV1Lnd1eGCu6I\\\\nsrVp5k1f3isAEQEAAYkCPgQYAQIACQUCVuxMygIbAgEpCRAyYu/yW6DScMBdIAQZ\\\\nAQIABgUCVuxMygAKCRCKohN4dhq2b4tcCACHxmOHVXNpu47OvUGYQydLgMACUlXN\\\\nlj+HfE0VReqShxdDmpasAY9IRpuMB2RsGK8GbNP+4SlOlAiPf5SMhS7nZNkNDgQQ\\\\naZ3HFpgrFmFwmE10BKT4iQtoxELLM57z0qGOAfTsEjWFQa4sF+6IHAQR/ptkdkkI\\\\nBUEXiMnAwVwBysLIJiLO8qdjB6qp52QkT074JVrwywT/P+DkMfC2k4r/AfEbf6eF\\\\ndmPDuPk6KD87+hJZsSa5MaMUBQVvRO/mgEkhJRITVu58eWGaBOcQJ8gqurhCqM5P\\\\nDfUA4TJ7wiqM6sS764vV1rOioTTXkszzhClQqET7hPVnVQjenYgv0EZHNyQH/1f1\\\\n/CYqvV1vFjM9vJjMbxXsATCkZe6wvBVKD8vLsJAr8N+onKQz+4OPc3kmKq7aESu3\\\\nCi/iuie5KKVwnuNhr9AzT61vEkKxwHcVFEvHB77F6ZAAInhRvjzmQbD2dlPLLQCC\\\\nqDj71ODSSAPTEmUy6969bgD9PfWei7kNkBIx7s3eBv8yzytSc2EcuUgopqFazquw\\\\nFs1+tqGHjBvQfTo6bqbJjp/9Ci2pvde3ElV2rAgUlb3lqXyXjRDqrXosh5GcRPQj\\\\nK8Nhj1BNhnrCVskE4BP0LYbOHuzgm86uXwGCFsY+w2VOsSm16Jx5GHyG5S5WU3+D\\\\nIts/HFYRLiFgDLmTlxo=\\\\n=+OzK\\\\n-----END PGP PUBLIC KEY BLOCK-----\\\"\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -83421,28 +83421,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"\\\"-----BEGIN PGP PUBLIC KEY BLOCK-----\\\\nVersion: GnuPG v2\\\\n\\\\nmQENBFayYZ0BCAC4hScoJXXpyR+MXGcrBxElqw3FzCVvkViuyeko+Jp76QJhg8kr\\\\nucRTxbnOoHfda/FmilEa/wxf9ch5/PSrrL26FxEoPHhJolp8fnIDLQeITn94NYdB\\\\nZtnnEKslpPrG97qSUWIchvyqCPtvOb8+8fWvGx9K/ZWcEEdh1X8+WFR2jMENMeoX\\\\nwxHWQoPnS7LpX/85/M7VUcJxvDVfv+eHsnQupmE5bGarKNih0oMe3LbdN3qA5PTz\\\\nSCm6Iudar1VsQ+xTz08ymL7t4pnEtLguQ7EyatFHCjxNblv5RzxoL0tDgN3HqoDz\\\\nc7TEA+q4RtDQl9amcvQ95emnXmZ974u7UkYdABEBAAG0HlNvbWUgVXNlciA8c29t\\\\nZXVzZXJAZ21haWwuY29tPokBOAQTAQIAIgUCVrJhnQIbAwYLCQgHAwIGFQgCCQoL\\\\nBBYCAwECHgECF4AACgkQMmLv8lug0nAViQgArWjI55+7p48URr2z9Jvak+yrBTx1\\\\nzkufltQAnHTJkq+Kl9dySSmTnOop8o3rE4++IOpYV5Y36PkKf9EZMk4n1RQiDPKE\\\\nAFtRVTkRaoWzOir9KQXJPfhKrl01j/QzY+utfiMvUoBJZ9ybq8Pa885SljW9lbaX\\\\nIYw+hl8ZdJ2KStvGrEyfQvRyq3aN5c9TV//4BdGnwx7Qabq/U+G18lizG6f/yq15\\\\ned7t0KELaCfeKPvytp4VE9/z/Ksah/h3+Qilx07/oG2Ae5kC1bEC9coD/ogPUhbv\\\\nb2bsBIoY9E9YwsLoif2lU+o1t76zLgUktuNscRRUKobW028H1zuFS/XQhrkBDQRW\\\\nsmGdAQgApnyyv3i144OLYy0O4UKQxd3e10Y3WpDwfnGIBefAI1m7RxnUxBag/DsU\\\\n7gi9qLEC4VHSfq4eiNfr1LJOyCL2edTgCWFgBhVjbXjZe6YAOrAnhxwCErnN0Y7N\\\\n6s8wVh9fObSOyf8ZE6G7JeKpcq9Q6gd/KxagfD48a1v+fyRHpyQc6J9pUEmtrDJ7\\\\nBjmsd2VWzLBvNWdHyxDNtZweIaqIO9VUYYpr1mtTliNBOZLUelmgrt7HBRcJpWMA\\\\nS8muVVbuP5MK0trLBq/JB8qUH3zRzB/PhMgzmkIfjEK1VYDWm4E8DYyTWEJcHqkb\\\\neqFsNjrIlwPaA122BWC6gUOPwwH+oQARAQABiQEfBBgBAgAJBQJWsmGdAhsMAAoJ\\\\nEDJi7/JboNJwAyAIALd4xcdmGbZD98gScJzqwzkOMcO8zFHqHNvJ42xIFvGny7c0\\\\n1Rx7iyrdypOby5AxE+viQcjG4rpLZW/xKYBNGrCfDyQO7511I0v8x20EICMlMfD/\\\\nNrWQCzesEPcUlKTP07d+sFyP8AyseOidbzY/92CpskTgdSBjY/ntLSaoknl/fjJE\\\\nQM8OkPqU7IraO1Jzzdnm20d5PZL9+PIwIWdSTedU/vBMTJyNcoqvSfKf1wNC66XP\\\\nhqfYgXJE564AdWZKA3C0IyCqiv+LHwxLnUHio1a4/r91C8KPzxs6tGxRDjXLd7ms\\\\nuYFGWymiUGOE/giHlcxdYcHzwLnPDliMQOLiTkK5AQ0EVuxMygEIAOD+bW1cDTmE\\\\nBxh5JECoqeHuwgl6DlLhnubWPkQ4ZeRzBRAsFcEJQlwlJjrzFDicL+lnm6Qq4tt0\\\\n560TwHdf15/AKTZIZu7H25axvGNzgeaUkJEJdYAq9zTKWwX7wKyzBszi485nQg97\\\\nMfAqwhMpDW0Qqf8+7Ug+WEmfBSGv9uL3aQC6WEeIsHfri0n0n8v4XgwhfShXguxO\\\\nCsOztEsuW7WWKW9P4TngKKv4lCHdPlV6FwxeMzODBJvc2fkHVHnqc0PqszJ5xcF8\\\\n6gZCpMM027SbpeYWCAD5zwJyYP9ntfO1p2HjnQ1dZaP9FeNcO7uIV1Lnd1eGCu6I\\\\nsrVp5k1f3isAEQEAAYkCPgQYAQIACQUCVuxMygIbAgEpCRAyYu/yW6DScMBdIAQZ\\\\nAQIABgUCVuxMygAKCRCKohN4dhq2b4tcCACHxmOHVXNpu47OvUGYQydLgMACUlXN\\\\nlj+HfE0VReqShxdDmpasAY9IRpuMB2RsGK8GbNP+4SlOlAiPf5SMhS7nZNkNDgQQ\\\\naZ3HFpgrFmFwmE10BKT4iQtoxELLM57z0qGOAfTsEjWFQa4sF+6IHAQR/ptkdkkI\\\\nBUEXiMnAwVwBysLIJiLO8qdjB6qp52QkT074JVrwywT/P+DkMfC2k4r/AfEbf6eF\\\\ndmPDuPk6KD87+hJZsSa5MaMUBQVvRO/mgEkhJRITVu58eWGaBOcQJ8gqurhCqM5P\\\\nDfUA4TJ7wiqM6sS764vV1rOioTTXkszzhClQqET7hPVnVQjenYgv0EZHNyQH/1f1\\\\n/CYqvV1vFjM9vJjMbxXsATCkZe6wvBVKD8vLsJAr8N+onKQz+4OPc3kmKq7aESu3\\\\nCi/iuie5KKVwnuNhr9AzT61vEkKxwHcVFEvHB77F6ZAAInhRvjzmQbD2dlPLLQCC\\\\nqDj71ODSSAPTEmUy6969bgD9PfWei7kNkBIx7s3eBv8yzytSc2EcuUgopqFazquw\\\\nFs1+tqGHjBvQfTo6bqbJjp/9Ci2pvde3ElV2rAgUlb3lqXyXjRDqrXosh5GcRPQj\\\\nK8Nhj1BNhnrCVskE4BP0LYbOHuzgm86uXwGCFsY+w2VOsSm16Jx5GHyG5S5WU3+D\\\\nIts/HFYRLiFgDLmTlxo=\\\\n=+OzK\\\\n-----END PGP PUBLIC KEY BLOCK-----\\\"\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -83496,40 +83496,40 @@
"subcategory": "gpg-keys",
"subcategoryLabel": "Gpg keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a GPG key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:gpg_key scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a GPG key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:gpg_key scope.
"
+ ]
},
{
"verb": "get",
@@ -83597,28 +83597,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "You can find the permissions for the installation under the `permissions` key.",
+ "description": "You can find the permissions for the installation under the permissions key.
",
"payload": "{\n \"total_count\": 2,\n \"installations\": [\n {\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"all\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n },\n {\n \"id\": 3,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"all\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -83698,23 +83698,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The access the user has to each repository is included in the hash under the `permissions` key.",
+ "description": "The access the user has to each repository is included in the hash under the permissions key.
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -83777,30 +83777,30 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Add a single repository to an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Add a single repository to an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -83861,30 +83861,30 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Remove a single repository from an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Remove a single repository from an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -84037,18 +84037,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -84118,28 +84118,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n },\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234\",\n \"id\": 3,\n \"url\": \"https://api.github.com/user/keys/3\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAB\",\n \"created_at\": \"2020-07-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -84245,33 +84245,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -84331,28 +84331,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -84406,35 +84406,35 @@
"subcategory": "keys",
"subcategoryLabel": "Keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a public SSH key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:public_key scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a public SSH key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:public_key scope.
"
+ ]
},
{
"verb": "get",
@@ -84516,28 +84516,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/orgs/octocat/memberships/defunkt\",\n \"state\": \"active\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/octocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"url\": \"https://api.github.com/orgs/invitocat/memberships/defunkt\",\n \"state\": \"pending\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/invitocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -84596,18 +84596,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/orgs/invitocat/memberships/defunkt\",\n \"state\": \"pending\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/invitocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -84710,23 +84710,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/orgs/octocat/memberships/defunkt\",\n \"state\": \"active\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/octocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -84794,23 +84794,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -84916,33 +84916,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/users/octocat\",\n \"url\": \"https://api.github.com/projects/1002603\",\n \"html_url\": \"https://github.com/users/octocat/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002603/columns\",\n \"id\": 1002603,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDM=\",\n \"name\": \"My Projects\",\n \"body\": \"A board to manage my personal projects.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -85012,28 +85012,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"email\": \"octocat@github.com\",\n \"verified\": true,\n \"primary\": true,\n \"visibility\": \"public\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -85205,22 +85205,22 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -85658,38 +85658,38 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"organization\": null,\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -85759,28 +85759,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -85835,34 +85835,34 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -85915,34 +85915,34 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -86046,17 +86046,17 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -86119,34 +86119,34 @@
"subcategoryLabel": "Starring",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if this repository is starred by you"
+ "description": "Response if this repository is starred by you
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if this repository is not starred by you"
+ "description": "Not Found if this repository is not starred by you
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -86206,35 +86206,35 @@
"subcategory": "starring",
"subcategoryLabel": "Starring",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -86295,34 +86295,34 @@
"subcategoryLabel": "Starring",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -86390,23 +86390,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -86474,23 +86474,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"type\": \"Organization\"\n },\n \"ldap_dn\": \"uid=asdf,ou=users,dc=github,dc=com\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -86558,13 +86558,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -86633,7 +86633,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -86706,15 +86706,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "If you are authenticated as the given user, you will see your private events. Otherwise, you'll only see public events.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "If you are authenticated as the given user, you will see your private events. Otherwise, you'll only see public events.
"
+ ]
},
{
"verb": "get",
@@ -86794,15 +86794,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This is the user's organization dashboard. You must be authenticated as the user to view this.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This is the user's organization dashboard. You must be authenticated as the user to view this.
"
+ ]
},
{
"verb": "get",
@@ -86874,14 +86874,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -86958,7 +86958,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -87038,7 +87038,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -87102,19 +87102,19 @@
"subcategoryLabel": "Followers",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if the user follows the target user"
+ "description": "if the user follows the target user
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if the user does not follow the target user"
+ "description": "if the user does not follow the target user
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -87200,13 +87200,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -87285,7 +87285,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"string\"\n }\n]\n
"
}
]
@@ -87369,18 +87369,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"contexts\": [\n {\n \"message\": \"Owns this repository\",\n \"octicon\": \"repo\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -87437,7 +87437,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
}
]
@@ -87517,7 +87517,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\"\n }\n]\n
"
}
]
@@ -87595,7 +87595,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
}
]
@@ -87689,13 +87689,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/users/octocat\",\n \"url\": \"https://api.github.com/projects/1002603\",\n \"html_url\": \"https://github.com/users/octocat/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002603/columns\",\n \"id\": 1002603,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDM=\",\n \"name\": \"My Projects\",\n \"body\": \"A board to manage my personal projects.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -87768,15 +87768,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "These are events that you've received by watching repos and following users. If you are authenticated as the given user, you will see private events. Otherwise, you'll only see public events.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "These are events that you've received by watching repos and following users. If you are authenticated as the given user, you will see private events. Otherwise, you'll only see public events.
"
+ ]
},
{
"verb": "get",
@@ -87848,14 +87848,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -87977,7 +87977,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -88031,15 +88031,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -88090,15 +88090,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "You can demote any user account except your own.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "You can demote any user account except your own.
"
+ ]
},
{
"verb": "get",
@@ -88285,7 +88285,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -88361,14 +88361,14 @@
"subcategoryLabel": "Users",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, Active Directory LDAP-authenticated users cannot be suspended through this API. If you attempt to suspend an Active Directory LDAP-authenticated user through this API, it will return a 403 response.
\nYou can suspend any user account except your own.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, Active Directory LDAP-authenticated users cannot be suspended through this API. If you attempt to suspend an Active Directory LDAP-authenticated user through this API, it will return a 403 response.
\nYou can suspend any user account except your own.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -88452,14 +88452,14 @@
"subcategoryLabel": "Users",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, this API is disabled and will return a 403 response. Active Directory LDAP-authenticated users cannot be unsuspended using the API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, this API is disabled and will return a 403 response. Active Directory LDAP-authenticated users cannot be unsuspended using the API.
",
"bodyParameters": [
{
"type": "string",
@@ -88504,14 +88504,14 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get a random sentence from the Zen of GitHub
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get a random sentence from the Zen of GitHub
"
+ ]
}
]
\ No newline at end of file
diff --git a/lib/rest/static/decorated/github.ae.json b/lib/rest/static/decorated/github.ae.json
index 775b96a69b..77e7124a2f 100644
--- a/lib/rest/static/decorated/github.ae.json
+++ b/lib/rest/static/decorated/github.ae.json
@@ -35,15 +35,15 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get Hypermedia links to resources accessible in GitHub's REST API
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get Hypermedia links to resources accessible in GitHub's REST API
"
+ ]
},
{
"verb": "get",
@@ -122,7 +122,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\",\n \"user\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n }\n]\n
"
}
]
@@ -325,7 +325,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\",\n \"user\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n}\n
"
}
],
@@ -512,7 +512,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\",\n \"user\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n}\n
"
}
]
@@ -707,7 +707,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Global\",\n \"id\": 1,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"organization\"\n ],\n \"config\": {\n \"url\": \"https://example.com\",\n \"content_type\": \"form\",\n \"insecure_ssl\": \"0\"\n },\n \"updated_at\": \"2017-12-07T00:14:59Z\",\n \"created_at\": \"2017-12-07T00:14:59Z\",\n \"url\": \"https://api.github.com/admin/hooks/1\",\n \"ping_url\": \"https://api.github.com/admin/hooks/1/pings\"\n}\n
"
}
],
@@ -891,14 +891,14 @@
"subcategoryLabel": "Global webhooks",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -960,15 +960,15 @@
"subcategory": "global-webhooks",
"subcategoryLabel": "Global webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the webhook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the webhook.
"
+ ]
},
{
"verb": "get",
@@ -1076,7 +1076,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false,\n \"last_used\": \"2020-06-11T22:31:57Z\",\n \"user_id\": 1,\n \"repository_id\": 2\n },\n {\n \"key\": \"9Og8iYjAyymI9LvABpJerYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 3,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false,\n \"last_used\": \"2020-06-11T22:31:57Z\",\n \"user_id\": 1,\n \"repository_id\": 2\n }\n]\n
"
}
]
@@ -1131,14 +1131,14 @@
"subcategoryLabel": "Users",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -1262,7 +1262,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n}\n
"
}
]
@@ -1360,7 +1360,7 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"message\": \"Job queued to rename organization. It may take a few minutes to complete.\",\n \"url\": \"https://<hostname>/api/v3/organizations/1\"\n}\n
"
}
]
@@ -1461,7 +1461,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"name\": \"Default\",\n \"image_url\": \"githubenterprise://internal\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/1\",\n \"default_environment\": true,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 14,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/1/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n },\n {\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n }\n]\n
"
}
]
@@ -1569,7 +1569,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": null,\n \"message\": null\n }\n}\n
"
}
]
@@ -1629,7 +1629,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": null,\n \"message\": null\n }\n}\n
"
}
]
@@ -1738,13 +1738,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"DevTools Hook Env\",\n \"image_url\": \"https://my_file_server/path/to/devtools_env.tar.gz\",\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2\",\n \"html_url\": \"https://github.example.com/admin/pre-receive-environments/2\",\n \"default_environment\": false,\n \"created_at\": \"2016-05-20T11:35:45-05:00\",\n \"hooks_count\": 1,\n \"download\": {\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Client Errors",
+ "description": "Client Errors
",
"payload": "{\n \"message\": \"Validation Failed\",\n \"errors\": [\n {\n \"resource\": \"PreReceiveEnvironment\",\n \"code\": \"custom\",\n \"message\": \"Cannot modify or delete the default environment\"\n }\n ]\n}\n
"
}
]
@@ -1804,12 +1804,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Client Errors",
+ "description": "Client Errors
",
"payload": "{\n \"message\": \"Validation Failed\",\n \"errors\": [\n {\n \"resource\": \"PreReceiveEnvironment\",\n \"code\": \"custom\",\n \"message\": \"Cannot modify or delete the default environment\"\n }\n ]\n}\n
"
}
]
@@ -1869,13 +1869,13 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/3/downloads/latest\",\n \"state\": \"not_started\",\n \"downloaded_at\": null,\n \"message\": null\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Client Errors",
+ "description": "Client Errors
",
"payload": "{\n \"message\": \"Validation Failed\",\n \"errors\": [\n {\n \"resource\": \"PreReceiveEnvironment\",\n \"code\": \"custom\",\n \"message\": \"Can not start a new download when a download is in progress\"\n }\n ]\n}\n
"
}
]
@@ -1935,7 +1935,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://github.example.com/api/v3/admin/pre-receive-environments/3/downloads/latest\",\n \"state\": \"success\",\n \"downloaded_at\": \"2016-05-26T07:42:53-05:00\",\n \"message\": null\n}\n
"
}
]
@@ -2006,7 +2006,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\"\n }\n]\n
"
}
]
@@ -2060,15 +2060,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a personal access token. Returns a 403 - Forbidden status when a personal access token is in use. For example, if you access this endpoint with the same personal access token that you are trying to delete, you will receive this error.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a personal access token. Returns a 403 - Forbidden status when a personal access token is in use. For example, if you access this endpoint with the same personal access token that you are trying to delete, you will receive this error.
"
+ ]
},
{
"verb": "delete",
@@ -2119,15 +2119,15 @@
"subcategory": "users",
"subcategoryLabel": "Users",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deleting a user will delete all their repositories, gists, applications, and personal settings. Suspending a user is often a better option.
\nYou can delete any user account except your own.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deleting a user will delete all their repositories, gists, applications, and personal settings. Suspending a user is often a better option.
\nYou can delete any user account except your own.
"
+ ]
},
{
"verb": "post",
@@ -2222,7 +2222,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"expires_at\": \"2011-10-06T17:26:27Z\",\n \"fingerprint\": \"\"\n}\n
"
}
]
@@ -2277,14 +2277,14 @@
"subcategoryLabel": "Users",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -2329,7 +2329,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n}\n
"
}
]
@@ -2399,18 +2399,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDxOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"client_id\": \"Iv1.8a61f9b3a7aba766\",\n \"client_secret\": \"1726be1638095a19edd134c77bde3aa2ece1e5d8\",\n \"webhook_secret\": \"e340154128314309424b7c8e90325147d99fdafa\",\n \"pem\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIIEowIBAAKCAQEAuEPzOUE+kiEH1WLiMeBytTEF856j0hOVcSUSUkZxKvqczkWM\\n9vo1gDyC7ZXhdH9fKh32aapba3RSsp4ke+giSmYTk2mGR538ShSDxh0OgpJmjiKP\\nX0Bj4j5sFqfXuCtl9SkH4iueivv4R53ktqM+n6hk98l6hRwC39GVIblAh2lEM4L/\\n6WvYwuQXPMM5OG2Ryh2tDZ1WS5RKfgq+9ksNJ5Q9UtqtqHkO+E63N5OK9sbzpUUm\\noNaOl3udTlZD3A8iqwMPVxH4SxgATBPAc+bmjk6BMJ0qIzDcVGTrqrzUiywCTLma\\nszdk8GjzXtPDmuBgNn+o6s02qVGpyydgEuqmTQIDAQABAoIBACL6AvkjQVVLn8kJ\\ndBYznJJ4M8ECo+YEgaFwgAHODT0zRQCCgzd+Vxl4YwHmKV2Lr+y2s0drZt8GvYva\\nKOK8NYYZyi15IlwFyRXmvvykF1UBpSXluYFDH7KaVroWMgRreHcIys5LqVSIb6Bo\\ngDmK0yBLPp8qR29s2b7ScZRtLaqGJiX+j55rNzrZwxHkxFHyG9OG+u9IsBElcKCP\\nkYCVE8ZdYexfnKOZbgn2kZB9qu0T/Mdvki8yk3I2bI6xYO24oQmhnT36qnqWoCBX\\nNuCNsBQgpYZeZET8mEAUmo9d+ABmIHIvSs005agK8xRaP4+6jYgy6WwoejJRF5yd\\nNBuF7aECgYEA50nZ4FiZYV0vcJDxFYeY3kYOvVuKn8OyW+2rg7JIQTremIjv8FkE\\nZnwuF9ZRxgqLxUIfKKfzp/5l5LrycNoj2YKfHKnRejxRWXqG+ZETfxxlmlRns0QG\\nJ4+BYL0CoanDSeA4fuyn4Bv7cy/03TDhfg/Uq0Aeg+hhcPE/vx3ebPsCgYEAy/Pv\\neDLssOSdeyIxf0Brtocg6aPXIVaLdus+bXmLg77rJIFytAZmTTW8SkkSczWtucI3\\nFI1I6sei/8FdPzAl62/JDdlf7Wd9K7JIotY4TzT7Tm7QU7xpfLLYIP1bOFjN81rk\\n77oOD4LsXcosB/U6s1blPJMZ6AlO2EKs10UuR1cCgYBipzuJ2ADEaOz9RLWwi0AH\\nPza2Sj+c2epQD9ZivD7Zo/Sid3ZwvGeGF13JyR7kLEdmAkgsHUdu1rI7mAolXMaB\\n1pdrsHureeLxGbRM6za3tzMXWv1Il7FQWoPC8ZwXvMOR1VQDv4nzq7vbbA8z8c+c\\n57+8tALQHOTDOgQIzwK61QKBgERGVc0EJy4Uag+VY8J4m1ZQKBluqo7TfP6DQ7O8\\nM5MX73maB/7yAX8pVO39RjrhJlYACRZNMbK+v/ckEQYdJSSKmGCVe0JrGYDuPtic\\nI9+IGfSorf7KHPoMmMN6bPYQ7Gjh7a++tgRFTMEc8956Hnt4xGahy9NcglNtBpVN\\n6G8jAoGBAMCh028pdzJa/xeBHLLaVB2sc0Fe7993WlsPmnVE779dAz7qMscOtXJK\\nfgtriltLSSD6rTA9hUAsL/X62rY0wdXuNdijjBb/qvrx7CAV6i37NK1CjABNjsfG\\nZM372Ac6zc1EqSrid2IjET1YqyIW2KGLI1R2xbQc98UGlt48OdWu\\n-----END RSA PRIVATE KEY-----\\n\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -2459,7 +2459,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -2571,14 +2571,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for a GitHub App. For more information about configuring a webhook for your app, see \"Creating a GitHub App.\"
\nYou must use a JWT to access this endpoint.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -2628,6 +2620,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -2696,18 +2696,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n },\n {\n \"id\": 123456789,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-04T00:57:16Z\",\n \"redelivery\": true,\n \"duration\": 0.28,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -2766,18 +2766,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456,\n \"url\": \"https://www.example.com\",\n \"request\": {\n \"headers\": {\n \"X-GitHub-Delivery\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"X-Hub-Signature-256\": \"sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"Accept\": \"*/*\",\n \"X-GitHub-Hook-ID\": \"42\",\n \"User-Agent\": \"GitHub-Hookshot/b8c71d8\",\n \"X-GitHub-Event\": \"issues\",\n \"X-GitHub-Hook-Installation-Target-ID\": \"123\",\n \"X-GitHub-Hook-Installation-Target-Type\": \"repository\",\n \"content-type\": \"application/json\"\n },\n \"payload\": {\n \"action\": \"opened\",\n \"issue\": {\n \"body\": \"foo\"\n },\n \"repository\": {\n \"id\": 123\n }\n }\n },\n \"response\": {\n \"headers\": {\n \"Content-Type\": \"text/html;charset=utf-8\"\n },\n \"payload\": \"ok\"\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -2830,25 +2830,25 @@
"subcategory": "webhooks",
"subcategoryLabel": "Webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Redeliver a delivery for the webhook configured for a GitHub App.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Redeliver a delivery for the webhook configured for a GitHub App.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -2934,7 +2934,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The permissions the installation has are included under the `permissions` key.",
+ "description": "The permissions the installation has are included under the permissions key.
",
"payload": "[\n {\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"selected\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n]\n
"
}
]
@@ -2993,18 +2993,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"selected\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -3056,20 +3056,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Uninstalls a GitHub App on a user, organization, or business account. If you prefer to temporarily suspend an app's access to your account's resources, then we recommend the \"Suspend an app installation\" endpoint.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Uninstalls a GitHub App on a user, organization, or business account. If you prefer to temporarily suspend an app's access to your account's resources, then we recommend the \"Suspend an app installation\" endpoint.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -3971,33 +3971,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"token\": \"ghs_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"expires_at\": \"2016-07-11T22:14:10Z\",\n \"permissions\": {\n \"issues\": \"write\",\n \"contents\": \"read\"\n },\n \"repository_selection\": \"selected\",\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -4885,20 +4885,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Suspends a GitHub App on a user, organization, or business account, which blocks the app from accessing the account's resources. When a GitHub App is suspended, the app's access to the GitHub AE API or webhook events is blocked for that account.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Suspends a GitHub App on a user, organization, or business account, which blocks the app from accessing the account's resources. When a GitHub App is suspended, the app's access to the GitHub AE API or webhook events is blocked for that account.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -4948,20 +4948,20 @@
"category": "apps",
"categoryLabel": "Apps",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a GitHub App installation suspension.
\nYou must use a JWT to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a GitHub App installation suspension.
\nYou must use a JWT to access this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -5041,19 +5041,19 @@
"subcategoryLabel": "Oauth applications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "OAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid OAuth access_token as an input parameter and the grant for the token's owner will be deleted.\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the application authorizations settings screen within GitHub.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "OAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid OAuth access_token as an input parameter and the grant for the token's owner will be deleted.\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the application authorizations settings screen within GitHub.
",
"bodyParameters": [
{
"type": "string",
@@ -5157,18 +5157,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -5263,13 +5263,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -5351,19 +5351,19 @@
"subcategoryLabel": "Oauth applications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "OAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "OAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.
",
"bodyParameters": [
{
"type": "string",
@@ -5444,7 +5444,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/authorizations/1\",\n \"scopes\": [\n \"public_repo\",\n \"user\"\n ],\n \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n \"token_last_eight\": \"Ae178B4a\",\n \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n \"app\": {\n \"url\": \"http://my-github-app.com\",\n \"name\": \"my github app\",\n \"client_id\": \"abcde12345fghij67890\"\n },\n \"note\": \"optional note\",\n \"note_url\": \"http://optional/note/url\",\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"fingerprint\": \"jklmnop12345678\",\n \"expires_at\": \"2011-09-08T17:26:27Z\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -5502,23 +5502,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -5565,13 +5565,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"citizen_code_of_conduct\",\n \"name\": \"Citizen Code of Conduct\",\n \"url\": \"https://api.github.com/codes_of_conduct/citizen_code_of_conduct\",\n \"html_url\": \"http://citizencodeofconduct.org/\"\n },\n {\n \"key\": \"contributor_covenant\",\n \"name\": \"Contributor Covenant\",\n \"url\": \"https://api.github.com/codes_of_conduct/contributor_covenant\",\n \"html_url\": \"https://www.contributor-covenant.org/version/2/0/code_of_conduct/\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -5628,18 +5628,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"contributor_covenant\",\n \"name\": \"Contributor Covenant\",\n \"url\": \"https://api.github.com/codes_of_conduct/contributor_covenant\",\n \"body\": \"# Contributor Covenant Code of Conduct\\n\\n## Our Pledge\\n\\nIn the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.\\n\\n## Our Standards\\n\\nExamples of behavior that contributes to creating a positive environment include:\\n\\n* Using welcoming and inclusive language\\n* Being respectful of differing viewpoints and experiences\\n* Gracefully accepting constructive criticism\\n* Focusing on what is best for the community\\n* Showing empathy towards other community members\\n\\nExamples of unacceptable behavior by participants include:\\n\\n* The use of sexualized language or imagery and unwelcome sexual attention or advances\\n* Trolling, insulting/derogatory comments, and personal or political attacks\\n* Public or private harassment\\n* Publishing others' private information, such as a physical or electronic address, without explicit permission\\n* Other conduct which could reasonably be considered inappropriate in a professional setting\\n\\n## Our Responsibilities\\n\\nProject maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response\\n to any instances of unacceptable behavior.\\n\\nProject maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.\\n\\n## Scope\\n\\nThis Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address,\\n posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.\\n\\n## Enforcement\\n\\nInstances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [EMAIL]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.\\n\\nProject maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.\\n\\n## Attribution\\n\\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]\\n\\n[homepage]: http://contributor-covenant.org\\n[version]: http://contributor-covenant.org/version/1/4/\\n\",\n \"html_url\": \"http://contributor-covenant.org/version/1/4/\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -5680,20 +5680,20 @@
"category": "emojis",
"categoryLabel": "Emojis",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Lists all the emojis available to use on GitHub AE.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Lists all the emojis available to use on GitHub AE.
"
+ ]
},
{
"verb": "get",
@@ -5885,15 +5885,15 @@
"subcategory": "announcement",
"subcategoryLabel": "Announcement",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes the global announcement banner in your enterprise.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes the global announcement banner in your enterprise.
"
+ ]
},
{
"verb": "get",
@@ -5940,7 +5940,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"seats\": 1400,\n \"seats_used\": 1316,\n \"seats_available\": 84,\n \"kind\": \"standard\",\n \"days_until_expiration\": 365,\n \"expire_at\": \"2016/02/06 12:41:52 -0600\"\n}\n
"
}
]
@@ -5990,7 +5990,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"repos\": {\n \"total_repos\": 212,\n \"root_repos\": 194,\n \"fork_repos\": 18,\n \"org_repos\": 51,\n \"total_pushes\": 3082,\n \"total_wikis\": 15\n },\n \"hooks\": {\n \"total_hooks\": 27,\n \"active_hooks\": 23,\n \"inactive_hooks\": 4\n },\n \"pages\": {\n \"total_pages\": 36\n },\n \"orgs\": {\n \"total_orgs\": 33,\n \"disabled_orgs\": 0,\n \"total_teams\": 60,\n \"total_team_members\": 314\n },\n \"users\": {\n \"total_users\": 254,\n \"admin_users\": 45,\n \"suspended_users\": 21\n },\n \"pulls\": {\n \"total_pulls\": 86,\n \"merged_pulls\": 60,\n \"mergeable_pulls\": 21,\n \"unmergeable_pulls\": 3\n },\n \"issues\": {\n \"total_issues\": 179,\n \"open_issues\": 83,\n \"closed_issues\": 96\n },\n \"milestones\": {\n \"total_milestones\": 7,\n \"open_milestones\": 6,\n \"closed_milestones\": 1\n },\n \"gists\": {\n \"total_gists\": 178,\n \"private_gists\": 151,\n \"public_gists\": 25\n },\n \"comments\": {\n \"total_commit_comments\": 6,\n \"total_gist_comments\": 28,\n \"total_issue_comments\": 366,\n \"total_pull_request_comments\": 30\n }\n}\n
"
}
]
@@ -6035,14 +6035,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -6084,14 +6084,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -6132,14 +6132,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -6181,14 +6181,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -6230,14 +6230,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -6279,14 +6279,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -6328,14 +6328,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -6377,14 +6377,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -6425,14 +6425,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -6474,14 +6474,14 @@
"subcategoryLabel": "Admin stats",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -6539,7 +6539,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled_organizations\": \"all\",\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/enterprises/2/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -6642,14 +6642,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for organizations and allowed actions in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for organizations and allowed actions in an enterprise.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"type": "string",
@@ -6757,7 +6757,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"organizations\": [\n {\n \"login\": \"octocat\",\n \"id\": 161335,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"url\": \"https://api.github.com/orgs/octo-org\",\n \"repos_url\": \"https://api.github.com/orgs/octo-org/repos\",\n \"events_url\": \"https://api.github.com/orgs/octo-org/events\",\n \"hooks_url\": \"https://api.github.com/orgs/octo-org/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/octo-org/issues\",\n \"members_url\": \"https://api.github.com/orgs/octo-org/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/octo-org/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n ]\n}\n
"
}
]
@@ -6847,14 +6847,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of organization IDs to enable for GitHub Actions.
",
@@ -6931,15 +6931,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds an organization to the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds an organization to the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -7001,15 +7001,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization from the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization from the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for enabled_organizations must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -7067,7 +7067,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -7177,14 +7177,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an enterprise.\"
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"type": "boolean",
@@ -7294,7 +7294,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"runner_groups\": [\n {\n \"id\": 1,\n \"name\": \"Default\",\n \"visibility\": \"all\",\n \"default\": true,\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/1/runners\",\n \"allows_public_repositories\": false\n },\n {\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/2/runners\",\n \"allows_public_repositories\": true\n },\n {\n \"id\": 3,\n \"name\": \"expensive-hardware\",\n \"visibility\": \"private\",\n \"default\": false,\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner_groups/3/runners\",\n \"allows_public_repositories\": true\n }\n ]\n}\n
"
}
]
@@ -7500,7 +7500,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": false\n}\n
"
}
]
@@ -7571,7 +7571,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": false\n}\n
"
}
]
@@ -7726,7 +7726,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"Expensive hardware runners\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_organizations_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\",\n \"runners_url\": \"https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\",\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -7791,15 +7791,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a self-hosted runner group for an enterprise.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a self-hosted runner group for an enterprise.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -7887,7 +7887,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -7987,14 +7987,14 @@
"subcategoryLabel": "Actions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of self-hosted runners that are part of an enterprise runner group.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of self-hosted runners that are part of an enterprise runner group.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"bodyParameters": [
{
"description": "Required. List of runner IDs to add to the runner group.
",
@@ -8081,15 +8081,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an enterprise.
\nYou must authenticate using an access token with the manage_runners:enterprise\nscope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a self-hosted runner to a runner group configured in an enterprise.
\nYou must authenticate using an access token with the manage_runners:enterprise\nscope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -8161,15 +8161,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a self-hosted runner from a group configured in an enterprise. The runner is then returned to the default group.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a self-hosted runner from a group configured in an enterprise. The runner is then returned to the default group.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -8247,7 +8247,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -8318,7 +8318,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 23,\n \"name\": \"MBP\",\n \"os\": \"macos\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n}\n
"
}
]
@@ -8383,15 +8383,15 @@
"subcategory": "actions",
"subcategoryLabel": "Actions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from an enterprise. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from an enterprise. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the manage_runners:enterprise scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -8438,7 +8438,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"timeline_url\": \"https://github.com/timeline\",\n \"user_url\": \"https://github.com/{user}\",\n \"current_user_public_url\": \"https://github.com/octocat\",\n \"current_user_url\": \"https://github.com/octocat.private?token=abc123\",\n \"current_user_actor_url\": \"https://github.com/octocat.private.actor?token=abc123\",\n \"current_user_organization_url\": \"\",\n \"current_user_organization_urls\": [\n \"https://github.com/organizations/github/octocat.private.atom?token=abc123\"\n ],\n \"security_advisories_url\": \"https://github.com/security-advisories\",\n \"_links\": {\n \"timeline\": {\n \"href\": \"https://github.com/timeline\",\n \"type\": \"application/atom+xml\"\n },\n \"user\": {\n \"href\": \"https://github.com/{user}\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_public\": {\n \"href\": \"https://github.com/octocat\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user\": {\n \"href\": \"https://github.com/octocat.private?token=abc123\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_actor\": {\n \"href\": \"https://github.com/octocat.private.actor?token=abc123\",\n \"type\": \"application/atom+xml\"\n },\n \"current_user_organization\": {\n \"href\": \"\",\n \"type\": \"\"\n },\n \"current_user_organizations\": [\n {\n \"href\": \"https://github.com/organizations/github/octocat.private.atom?token=abc123\",\n \"type\": \"application/atom+xml\"\n }\n ],\n \"security_advisories\": {\n \"href\": \"https://github.com/security-advisories\",\n \"type\": \"application/atom+xml\"\n }\n }\n}\n
"
}
]
@@ -8518,18 +8518,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -8648,34 +8648,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Allows you to add a new gist with one or more files.
\nNote: Don't name your files \"gistfile\" with a numerical suffix. This is the format of the automatic naming scheme that Gist uses internally.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
- },
- {
- "httpStatusCode": "304",
- "httpStatusMessage": "Not Modified",
- "description": "Not modified"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"description": "Description of the gist
",
@@ -8738,6 +8710,34 @@
"type": "boolean or string",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "304",
+ "httpStatusMessage": "Not Modified",
+ "description": "Not modified
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -8815,23 +8815,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -8910,23 +8910,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -8984,23 +8984,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden Gist"
+ "description": "Forbidden Gist
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -9135,24 +9135,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Allows you to update or delete a gist file and rename gist files. Files from the previous version of the gist that aren't explicitly changed during an edit are unchanged.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"description": "Description of the gist
",
@@ -9210,6 +9192,24 @@
"rawDescription": "Names of files to be updated",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -9261,29 +9261,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -9361,23 +9361,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -9476,23 +9476,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -9562,23 +9562,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden Gist"
+ "description": "Forbidden Gist
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -9687,13 +9687,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDExOkdpc3RDb21tZW50MQ==\",\n \"url\": \"https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\",\n \"body\": \"Just commenting for the sake of commenting\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-18T23:23:56Z\",\n \"updated_at\": \"2011-04-18T23:23:56Z\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -9758,29 +9758,29 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -9856,23 +9856,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/57a7f021a713b1c5a6a199b54cc514735d2d462f\",\n \"version\": \"57a7f021a713b1c5a6a199b54cc514735d2d462f\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"change_status\": {\n \"deletions\": 0,\n \"additions\": 180,\n \"total\": 180\n },\n \"committed_at\": \"2010-04-14T02:15:15Z\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -9950,23 +9950,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 1,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -10024,28 +10024,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -10098,29 +10098,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if gist is starred"
+ "description": "Response if gist is starred
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if gist is not starred"
+ "description": "Not Found if gist is not starred
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -10170,30 +10170,30 @@
"category": "gists",
"categoryLabel": "Gists",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -10244,29 +10244,29 @@
"categoryLabel": "Gists",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -10331,23 +10331,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -10394,13 +10394,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"Actionscript\",\n \"Android\",\n \"AppceleratorTitanium\",\n \"Autotools\",\n \"Bancha\",\n \"C\",\n \"C++\"\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -10457,13 +10457,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"C\",\n \"source\": \"# Object files\\n*.o\\n\\n# Libraries\\n*.lib\\n*.a\\n\\n# Shared objects (inc. Windows DLLs)\\n*.dll\\n*.so\\n*.so.*\\n*.dylib\\n\\n# Executables\\n*.exe\\n*.out\\n*.app\\n\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -10533,23 +10533,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -10592,15 +10592,15 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Revokes the installation token you're using to authenticate as an installation and access this endpoint.
\nOnce an installation token is revoked, the token is invalidated and cannot be used. Other endpoints that require the revoked installation token must have a new installation token to work. You can create a new token using the \"Create an installation access token for an app\" endpoint.
\nYou must use an installation access token to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Revokes the installation token you're using to authenticate as an installation and access this endpoint.
\nOnce an installation token is revoked, the token is invalidated and cannot be used. Other endpoints that require the revoked installation token must have a new installation token to work. You can create a new token using the \"Create an installation access token for an app\" endpoint.
\nYou must use an installation access token to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -10789,23 +10789,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -10882,13 +10882,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"lgpl-3.0\",\n \"name\": \"GNU Lesser General Public License v3.0\",\n \"spdx_id\": \"LGPL-3.0\",\n \"url\": \"https://api.github.com/licenses/lgpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"mpl-2.0\",\n \"name\": \"Mozilla Public License 2.0\",\n \"spdx_id\": \"MPL-2.0\",\n \"url\": \"https://api.github.com/licenses/mpl-2.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"agpl-3.0\",\n \"name\": \"GNU Affero General Public License v3.0\",\n \"spdx_id\": \"AGPL-3.0\",\n \"url\": \"https://api.github.com/licenses/agpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"unlicense\",\n \"name\": \"The Unlicense\",\n \"spdx_id\": \"Unlicense\",\n \"url\": \"https://api.github.com/licenses/unlicense\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"apache-2.0\",\n \"name\": \"Apache License 2.0\",\n \"spdx_id\": \"Apache-2.0\",\n \"url\": \"https://api.github.com/licenses/apache-2.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n {\n \"key\": \"gpl-3.0\",\n \"name\": \"GNU General Public License v3.0\",\n \"spdx_id\": \"GPL-3.0\",\n \"url\": \"https://api.github.com/licenses/gpl-3.0\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -10945,23 +10945,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"http://choosealicense.com/licenses/mit/\",\n \"description\": \"A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty.\",\n \"implementation\": \"Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders.\",\n \"permissions\": [\n \"commercial-use\",\n \"modifications\",\n \"distribution\",\n \"sublicense\",\n \"private-use\"\n ],\n \"conditions\": [\n \"include-copyright\"\n ],\n \"limitations\": [\n \"no-liability\"\n ],\n \"body\": \"\\n\\nThe MIT License (MIT)\\n\\nCopyright (c) [year] [fullname]\\n\\nPermission is hereby granted, free of charge, to any person obtaining a copy\\nof this software and associated documentation files (the \\\"Software\\\"), to deal\\nin the Software without restriction, including without limitation the rights\\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\\ncopies of the Software, and to permit persons to whom the Software is\\nfurnished to do so, subject to the following conditions:\\n\\nThe above copyright notice and this permission notice shall be included in all\\ncopies or substantial portions of the Software.\\n\\nTHE SOFTWARE IS PROVIDED \\\"AS IS\\\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\\nSOFTWARE.\\n\",\n \"featured\": true\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -11056,12 +11056,12 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
],
"bodyParameters": [
@@ -11153,20 +11153,20 @@
"categoryLabel": "Markdown",
"contentType": "text/plain",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "You must send Markdown as plain text (using a Content-Type header of text/plain or text/x-markdown) to this endpoint, rather than using JSON format. In raw mode, GitHub Flavored Markdown is not supported and Markdown will be rendered in plain format like a README.md file. Markdown content must be 400 KB or less.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "You must send Markdown as plain text (using a Content-Type header of text/plain or text/x-markdown) to this endpoint, rather than using JSON format. In raw mode, GitHub Flavored Markdown is not supported and Markdown will be rendered in plain format like a README.md file. Markdown content must be 400 KB or less.
"
+ ]
},
{
"verb": "get",
@@ -11211,13 +11211,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"verifiable_password_authentication\": true,\n \"ssh_key_fingerprints\": {\n \"SHA256_RSA\": \"nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8\",\n \"SHA256_DSA\": \"br9IjFspm1vxR3iA35FWE+4VTyz1hYVLIE2t1/CeyWQ\",\n \"SHA256_ECDSA\": \"p2QAMXNIC1TJYWeIOttrVc98/R1BUFWu3/LiyKgUfQM\",\n \"SHA256_ED25519\": \"+DiY3wvvV6TuJJhbpZisF/zLDA0zPMSvHdkr4UvCOqU\"\n },\n \"hooks\": [\n \"192.30.252.0/22\"\n ],\n \"web\": [\n \"192.30.252.0/22\",\n \"185.199.108.0/22\"\n ],\n \"api\": [\n \"192.30.252.0/22\",\n \"185.199.108.0/22\"\n ],\n \"git\": [\n \"192.30.252.0/22\"\n ],\n \"packages\": [\n \"192.30.252.0/22\"\n ],\n \"pages\": [\n \"192.30.252.153/32\",\n \"192.30.252.154/32\"\n ],\n \"importer\": [\n \"54.158.161.132\",\n \"54.226.70.38\"\n ],\n \"actions\": [\n \"13.64.0.0/16\",\n \"13.65.0.0/16\"\n ],\n \"dependabot\": [\n \"54.158.161.132\"\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -11331,28 +11331,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -11427,34 +11427,34 @@
"subcategoryLabel": "Notifications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Marks all notifications as \"read\" removes it from the default view on GitHub AE. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub AE will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
],
- "descriptionHTML": "Marks all notifications as \"read\" removes it from the default view on GitHub AE. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub AE will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"bodyParameters": [
{
"description": "Describes the last point that notifications were checked.
",
@@ -11533,23 +11533,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -11604,24 +11604,24 @@
"subcategoryLabel": "Notifications",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -11679,23 +11679,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/notifications/threads/1/subscription\",\n \"thread_url\": \"https://api.github.com/notifications/threads/1\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -11789,23 +11789,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/notifications/threads/1/subscription\",\n \"thread_url\": \"https://api.github.com/notifications/threads/1\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -11859,30 +11859,30 @@
"subcategory": "notifications",
"subcategoryLabel": "Notifications",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Mutes all future notifications for a conversation until you comment on the thread or get an @mention. If you are watching the repository of the thread, you will still receive notifications. To ignore future notifications for a repository you are watching, use the Set a thread subscription endpoint and set ignore to true.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Mutes all future notifications for a conversation until you comment on the thread or get an @mention. If you are watching the repository of the thread, you will still receive notifications. To ignore future notifications for a repository you are watching, use the Set a thread subscription endpoint and set ignore to true.
"
+ ]
},
{
"verb": "get",
@@ -11931,15 +11931,15 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get the octocat as ASCII art
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get the octocat as ASCII art
"
+ ]
},
{
"verb": "get",
@@ -12005,13 +12005,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -12065,7 +12065,6 @@
"x-github": {
"githubCloudOnly": true,
"enabledForGitHubApps": true,
- "previews": [],
"category": "teams",
"subcategory": "external-groups"
},
@@ -12081,7 +12080,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"groups\": [\n {\n \"group_id\": \"123\",\n \"group_name\": \"Octocat admins\",\n \"updated_at\": \"2021-01-24T11:31:04-06:00\"\n },\n {\n \"group_id\": \"456\",\n \"group_name\": \"Octocat docs members\",\n \"updated_at\": \"2021-03-24T11:31:04-06:00\"\n }\n ]\n}\n
"
}
]
@@ -12145,7 +12144,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -12622,18 +12621,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"twitter_username\": \"github\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"type\": \"Organization\",\n \"total_private_repos\": 100,\n \"owned_private_repos\": 100,\n \"private_gists\": 81,\n \"disk_usage\": 10000,\n \"collaborators\": 8,\n \"billing_email\": \"mona@github.com\",\n \"plan\": {\n \"name\": \"Medium\",\n \"space\": 400,\n \"private_repos\": 20\n },\n \"default_repository_permission\": \"read\",\n \"members_can_create_repositories\": true,\n \"two_factor_requirement_enabled\": true,\n \"members_allowed_repository_creation_type\": \"all\",\n \"members_can_create_public_repositories\": false,\n \"members_can_create_private_repositories\": false,\n \"members_can_create_internal_repositories\": false,\n \"members_can_create_pages\": true,\n \"members_can_create_public_pages\": true,\n \"members_can_create_private_pages\": true,\n \"members_can_fork_private_repositories\": false,\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -12692,7 +12691,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled_repositories\": \"all\",\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/organizations/42/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -12794,14 +12793,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for repositories and allowed actions in an organization.
\nIf the organization belongs to an enterprise that has set restrictive permissions at the enterprise level, such as allowed_actions to selected actions, then you cannot override them for the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for repositories and allowed actions in an organization.
\nIf the organization belongs to an enterprise that has set restrictive permissions at the enterprise level, such as allowed_actions to selected actions, then you cannot override them for the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"type": "string",
@@ -12908,7 +12907,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
}
]
@@ -12997,14 +12996,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"description": "Required. List of repository IDs to enable for GitHub Actions.
",
@@ -13079,15 +13078,15 @@
"subcategory": "permissions",
"subcategoryLabel": "Permissions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
"
+ ]
},
{
"verb": "delete",
@@ -13147,15 +13146,15 @@
"subcategory": "permissions",
"subcategoryLabel": "Permissions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for enabled_repositories must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
"
+ ]
},
{
"verb": "get",
@@ -13212,7 +13211,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -13321,14 +13320,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in an organization. To use this endpoint, the organization permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nIf the organization belongs to an enterprise that has selected actions set at the enterprise level, then you cannot override any of the enterprise's allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the organization must belong to an enterprise. If the organization does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories in the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in an organization. To use this endpoint, the organization permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for an organization.\"
\nIf the organization belongs to an enterprise that has selected actions set at the enterprise level, then you cannot override any of the enterprise's allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the organization must belong to an enterprise. If the organization does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories in the organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the administration organization permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -13566,7 +13565,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner-groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -13723,7 +13722,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 2,\n \"name\": \"octo-runner-group\",\n \"visibility\": \"selected\",\n \"default\": false,\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/runner-groups/2/repositories\",\n \"runners_url\": \"https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\",\n \"inherited\": false,\n \"allows_public_repositories\": true\n}\n
"
}
]
@@ -13787,15 +13786,15 @@
"subcategory": "self-hosted-runner-groups",
"subcategoryLabel": "Self hosted runner groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The self-hosted runner groups REST API is available with GitHub Enterprise Cloud. For more information, see \"GitHub's products.\"
\nDeletes a self-hosted runner group for an organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The self-hosted runner groups REST API is available with GitHub Enterprise Cloud. For more information, see \"GitHub's products.\"
\nDeletes a self-hosted runner group for an organization.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -13856,15 +13855,15 @@
"subcategory": "self-hosted-runners",
"subcategoryLabel": "Self hosted runners",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from an organization. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from an organization. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:org scope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -13941,7 +13940,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 3,\n \"secrets\": [\n {\n \"name\": \"GIST_ID\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"private\"\n },\n {\n \"name\": \"DEPLOY_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"all\"\n },\n {\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"selected\",\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories\"\n }\n ]\n}\n
"
}
]
@@ -14001,7 +14000,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -14071,7 +14070,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\",\n \"visibility\": \"selected\",\n \"selected_repositories_url\": \"https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories\"\n}\n
"
}
]
@@ -14114,7 +14113,7 @@
}
],
"summary": "Create or update an organization secret",
- "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -14209,15 +14208,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to\nuse this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to\nuse this endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -14325,15 +14324,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in an organization using the secret name. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in an organization using the secret name. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -14420,7 +14419,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n }\n ]\n}\n
"
}
]
@@ -14517,14 +14516,14 @@
"subcategoryLabel": "Secrets",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Replaces all repositories for an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Replaces all repositories for an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"bodyParameters": [
{
"type": "array of integers",
@@ -14608,20 +14607,20 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Adds a repository to an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "No Content when repository was added to the selected list"
+ "description": "No Content when repository was added to the selected list
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when visibility type is not set to selected"
+ "description": "Conflict when visibility type is not set to selected
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Adds a repository to an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -14691,20 +14690,20 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a repository from an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when repository was removed from the selected list"
+ "description": "Response when repository was removed from the selected list
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when visibility type not set to selected"
+ "description": "Conflict when visibility type not set to selected
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a repository from an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -14771,7 +14770,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"group_id\": \"123\",\n \"group_name\": \"Octocat admins\",\n \"updated_at\": \"2021-01-24T11:31:04-06:00\",\n \"teams\": [\n {\n \"team_id\": 1,\n \"team_name\": \"team-test\"\n },\n {\n \"team_id\": 2,\n \"team_name\": \"team-test2\"\n }\n ],\n \"members\": [\n {\n \"member_id\": 1,\n \"member_login\": \"mona-lisa_eocsaxrs\",\n \"member_name\": \"Mona Lisa\",\n \"member_email\": \"mona_lisa@github.com\"\n },\n {\n \"member_id\": 2,\n \"member_login\": \"octo-lisa_eocsaxrs\",\n \"member_name\": \"Octo Lisa\",\n \"member_email\": \"octo_lisa@github.com\"\n }\n ]\n}\n
"
}
]
@@ -14859,7 +14858,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"groups\": [\n {\n \"group_id\": \"123\",\n \"group_name\": \"Octocat admins\",\n \"updated_at\": \"2021-01-24T11:31:04-06:00\"\n },\n {\n \"group_id\": \"456\",\n \"group_name\": \"Octocat docs members\",\n \"updated_at\": \"2021-03-24T11:31:04-06:00\"\n }\n ]\n}\n
"
}
]
@@ -14939,13 +14938,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"deliveries_url\": \"https://api.github.com/orgs/octocat/hooks/1/deliveries\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -15220,18 +15219,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"deliveries_url\": \"https://api.github.com/orgs/octocat/hooks/1/deliveries\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -15489,13 +15488,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"deliveries_url\": \"https://api.github.com/orgs/octocat/hooks/1/deliveries\",\n \"name\": \"web\",\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -15733,18 +15732,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"url\": \"https://api.github.com/orgs/octocat/hooks/1\",\n \"ping_url\": \"https://api.github.com/orgs/octocat/hooks/1/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"name\": \"web\",\n \"events\": [\n \"pull_request\"\n ],\n \"active\": true,\n \"config\": {\n \"url\": \"http://example.com\",\n \"content_type\": \"json\"\n },\n \"updated_at\": \"2011-09-06T20:39:23Z\",\n \"created_at\": \"2011-09-06T17:26:27Z\",\n \"type\": \"Organization\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -15961,19 +15960,19 @@
"subcategoryLabel": "Webhooks",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -16039,7 +16038,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -16171,14 +16170,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for an organization. To update more information about the webhook, including the active state and events, use \"Update an organization webhook .\"
\nAccess tokens must have the admin:org_hook scope, and GitHub Apps must have the organization_hooks:write permission.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -16228,6 +16219,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -16303,18 +16302,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456,\n \"url\": \"https://www.example.com\",\n \"request\": {\n \"headers\": {\n \"X-GitHub-Delivery\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"X-Hub-Signature-256\": \"sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"Accept\": \"*/*\",\n \"X-GitHub-Hook-ID\": \"42\",\n \"User-Agent\": \"GitHub-Hookshot/b8c71d8\",\n \"X-GitHub-Event\": \"issues\",\n \"X-GitHub-Hook-Installation-Target-ID\": \"123\",\n \"X-GitHub-Hook-Installation-Target-Type\": \"repository\",\n \"content-type\": \"application/json\"\n },\n \"payload\": {\n \"action\": \"opened\",\n \"issue\": {\n \"body\": \"foo\"\n },\n \"repository\": {\n \"id\": 123\n }\n }\n },\n \"response\": {\n \"headers\": {\n \"Content-Type\": \"text/html;charset=utf-8\"\n },\n \"payload\": \"ok\"\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -16385,25 +16384,25 @@
"subcategory": "webhooks",
"subcategoryLabel": "Webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Redeliver a delivery for a webhook configured in an organization.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Redeliver a delivery for a webhook configured in an organization.
"
+ ]
},
{
"verb": "post",
@@ -16463,20 +16462,20 @@
"subcategory": "webhooks",
"subcategoryLabel": "Webhooks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the hook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the hook.
"
+ ]
},
{
"verb": "get",
@@ -16531,7 +16530,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
}
]
@@ -16609,7 +16608,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"installations\": [\n {\n \"id\": 25381,\n \"account\": {\n \"login\": \"octo-org\",\n \"id\": 6811672,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjY4MTE2NzI=\",\n \"avatar_url\": \"https://avatars3.githubusercontent.com/u/6811672?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octo-org\",\n \"html_url\": \"https://github.com/octo-org\",\n \"followers_url\": \"https://api.github.com/users/octo-org/followers\",\n \"following_url\": \"https://api.github.com/users/octo-org/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octo-org/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octo-org/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octo-org/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octo-org/orgs\",\n \"repos_url\": \"https://api.github.com/users/octo-org/repos\",\n \"events_url\": \"https://api.github.com/users/octo-org/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octo-org/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"selected\",\n \"access_tokens_url\": \"https://api.github.com/app/installations/25381/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/octo-org/settings/installations/25381\",\n \"app_id\": 2218,\n \"target_id\": 6811672,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"deployments\": \"write\",\n \"metadata\": \"read\",\n \"pull_requests\": \"read\",\n \"statuses\": \"read\"\n },\n \"events\": [\n \"deployment\",\n \"deployment_status\"\n ],\n \"created_at\": \"2017-05-16T08:47:09.000-07:00\",\n \"updated_at\": \"2017-06-06T11:23:23.000-07:00\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n ]\n}\n
"
}
]
@@ -16774,13 +16773,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -16890,18 +16889,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response if requester is not an organization member"
+ "description": "Response if requester is not an organization member
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -16963,25 +16962,25 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Check if a user is, publicly or privately, a member of the organization.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if requester is an organization member and user is a member"
+ "description": "Response if requester is an organization member and user is a member
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response if requester is not an organization member"
+ "description": "Response if requester is not an organization member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if requester is an organization member and user is not a member"
+ "description": "Not Found if requester is an organization member and user is not a member
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Check if a user is, publicly or privately, a member of the organization.
"
+ ]
},
{
"verb": "delete",
@@ -17041,20 +17040,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removing a user from this list will remove them from all teams and they will no longer have any access to the organization's repositories.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removing a user from this list will remove them from all teams and they will no longer have any access to the organization's repositories.
"
+ ]
},
{
"verb": "get",
@@ -17126,12 +17125,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -17247,12 +17246,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -17314,25 +17313,25 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "In order to remove a user's membership with an organization, the authenticated user must be an organization owner.
\nIf the specified user is an active member of the organization, this will remove them from the organization. If the specified user has been invited to the organization, this will cancel their invitation. The specified user will receive an email notification in both cases.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "In order to remove a user's membership with an organization, the authenticated user must be an organization owner.
\nIf the specified user is an active member of the organization, this will remove them from the organization. If the specified user has been invited to the organization, this will cancel their invitation. The specified user will receive an email notification in both cases.
"
+ ]
},
{
"verb": "get",
@@ -17424,7 +17423,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -17487,30 +17486,30 @@
"subcategory": "outside-collaborators",
"subcategoryLabel": "Outside collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "When an organization member is converted to an outside collaborator, they'll only have access to the repositories that their current team membership allows. The user will no longer be a member of the organization. For more information, see \"Converting an organization member to an outside collaborator\".
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "User is getting converted asynchronously"
+ "description": "User is getting converted asynchronously
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "User was converted"
+ "description": "User was converted
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if user is the last owner of the organization or not a member of the organization"
+ "description": "Forbidden if user is the last owner of the organization or not a member of the organization
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "When an organization member is converted to an outside collaborator, they'll only have access to the repositories that their current team membership allows. The user will no longer be a member of the organization. For more information, see \"Converting an organization member to an outside collaborator\".
"
+ ]
},
{
"verb": "delete",
@@ -17576,12 +17575,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if user is a member of the organization",
+ "description": "Unprocessable Entity if user is a member of the organization
",
"payload": "{\n \"message\": \"You cannot specify an organization member to remove as an outside collaborator.\",\n \"documentation_url\": \"https://docs.github.com/github-ae@latest/rest/reference/orgs#remove-outside-collaborator\"\n}\n
"
}
]
@@ -17675,13 +17674,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -17795,33 +17794,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -17948,7 +17947,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -18388,18 +18387,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"organization\": null,\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -18476,13 +18475,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -18720,18 +18719,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -18798,13 +18797,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -19002,7 +19001,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n }\n}\n
"
}
]
@@ -19064,15 +19063,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "To delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "To delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}.
"
+ ]
},
{
"verb": "get",
@@ -19184,7 +19183,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -19333,7 +19332,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -19412,7 +19411,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -19544,7 +19543,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 1,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Welcome to our first team post\",\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -19617,15 +19616,15 @@
"subcategory": "discussions",
"subcategoryLabel": "Discussions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Delete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Delete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}.
"
+ ]
},
{
"verb": "get",
@@ -19736,7 +19735,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -19854,7 +19853,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -19942,7 +19941,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -20068,7 +20067,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like pineapples?\",\n \"body_html\": \"<p>Do you like pineapples?</p>\",\n \"body_version\": \"e6907b24d9c93cc0c5024a7af5888116\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -20150,15 +20149,15 @@
"subcategory": "discussion-comments",
"subcategoryLabel": "Discussion comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}.
"
+ ]
},
{
"verb": "get",
@@ -20281,7 +20280,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -20425,13 +20424,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -20520,15 +20519,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion comment. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion comment. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -20642,7 +20641,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -20777,13 +20776,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -20863,15 +20862,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a team or organization with team_id and org_id using the route DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions/:reaction_id.
\nDelete a reaction to a team discussion. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "patch",
@@ -20978,7 +20977,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"group_id\": \"123\",\n \"group_name\": \"Octocat admins\",\n \"updated_at\": \"2021-01-24T11:31:04-06:00\",\n \"teams\": [\n {\n \"team_id\": 1,\n \"team_name\": \"team-test\"\n },\n {\n \"team_id\": 2,\n \"team_name\": \"team-test2\"\n }\n ],\n \"members\": [\n {\n \"member_id\": 1,\n \"member_login\": \"mona-lisa_eocsaxrs\",\n \"member_name\": \"Mona Lisa\",\n \"member_email\": \"mona_lisa@github.com\"\n },\n {\n \"member_id\": 2,\n \"member_login\": \"octo-lisa_eocsaxrs\",\n \"member_name\": \"Octo Lisa\",\n \"member_email\": \"octo_lisa@github.com\"\n }\n ]\n}\n
"
}
]
@@ -21042,15 +21041,15 @@
"subcategory": "external-groups",
"subcategoryLabel": "External groups",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a connection between a team and an external group.
\nYou can manage team membership with your IdP using Enterprise Managed Users for GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a connection between a team and an external group.
\nYou can manage team membership with your IdP using Enterprise Managed Users for GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -21153,7 +21152,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -21238,7 +21237,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if user has no team membership"
+ "description": "if user has no team membership
"
}
]
},
@@ -21364,12 +21363,12 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team
"
}
]
},
@@ -21441,20 +21440,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub AE team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub AE.\"
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/memberships/{username}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub AE team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub AE.\"
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/memberships/{username}.
"
+ ]
},
{
"verb": "get",
@@ -21539,7 +21538,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n }\n]\n
"
}
]
@@ -21616,13 +21615,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if project is not managed by this team"
+ "description": "Not Found if project is not managed by this team
"
}
]
},
@@ -21741,12 +21740,12 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if the project is not owned by the organization",
+ "description": "Forbidden if the project is not owned by the organization
",
"payload": "{\n \"message\": \"Must have admin rights to Repository.\",\n \"documentation_url\": \"https://docs.github.com/github-ae@latest/rest/reference/teams#add-or-update-team-project-permissions\"\n}\n
"
}
]
@@ -21817,15 +21816,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. This endpoint removes the project from the team, but does not delete the project.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/projects/{project_id}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. This endpoint removes the project from the team, but does not delete the project.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/projects/{project_id}.
"
+ ]
},
{
"verb": "get",
@@ -21910,7 +21909,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -21996,18 +21995,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Alternative response with repository permissions",
+ "description": "Alternative response with repository permissions
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"maintain\": false,\n \"push\": false,\n \"triage\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"triage\": false,\n \"push\": false,\n \"maintain\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if team has permission for the repository. This is the response when the repository media type hasn't been provded in the Accept header."
+ "description": "Response if team has permission for the repository. This is the response when the repository media type hasn't been provded in the Accept header.
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team does not have permission for the repository"
+ "description": "Not Found if team does not have permission for the repository
"
}
]
},
@@ -22116,14 +22115,14 @@
"categoryLabel": "Teams",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "To add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization. Note that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nNote: You can also specify a team by org_id and team_id using the route PUT /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
\nFor more information about the permission levels, see \"Repository permission levels for an organization\".
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "To add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization. Note that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nNote: You can also specify a team by org_id and team_id using the route PUT /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
\nFor more information about the permission levels, see \"Repository permission levels for an organization\".
",
"bodyParameters": [
{
"type": "string",
@@ -22219,15 +22218,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. This does not delete the repository, it just removes it from the team.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. This does not delete the repository, it just removes it from the team.
\nNote: You can also specify a team by org_id and team_id using the route DELETE /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}.
"
+ ]
},
{
"verb": "get",
@@ -22312,7 +22311,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if child teams exist",
+ "description": "if child teams exist
",
"payload": "[\n {\n \"id\": 2,\n \"node_id\": \"MDQ6VGVhbTI=\",\n \"url\": \"https://api.github.com/teams/2\",\n \"name\": \"Original Roster\",\n \"slug\": \"original-roster\",\n \"description\": \"Started it all.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/2/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/2/repos\",\n \"parent\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n },\n \"html_url\": \"https://github.com/orgs/rails/teams/core\"\n }\n]\n
"
}
]
@@ -22373,28 +22372,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -22510,33 +22509,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -22591,34 +22590,34 @@
"subcategoryLabel": "Cards",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -22712,32 +22711,32 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Response"
+ "description": "Response
"
}
],
"bodyParameters": [
@@ -22820,28 +22819,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -22938,23 +22937,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -23009,29 +23008,29 @@
"subcategoryLabel": "Columns",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -23125,23 +23124,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -23313,33 +23312,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/cards/1478\",\n \"id\": 1478,\n \"node_id\": \"MDExOlByb2plY3RDYXJkMTQ3OA==\",\n \"note\": \"Add payload for delete Project column\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2016-09-05T14:21:06Z\",\n \"updated_at\": \"2016-09-05T14:20:22Z\",\n \"archived\": false,\n \"column_url\": \"https://api.github.com/projects/columns/367\",\n \"content_url\": \"https://api.github.com/repos/api-playground/projects-test/issues/3\",\n \"project_url\": \"https://api.github.com/projects/120\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Response"
+ "description": "Response
"
}
]
},
@@ -23425,27 +23424,27 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -23515,23 +23514,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -23712,38 +23711,38 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if the authenticated user does not have access to the project"
+ "description": "Not Found if the authenticated user does not have access to the project
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -23794,40 +23793,40 @@
"category": "projects",
"categoryLabel": "Projects",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a project board. Returns a 404 Not Found status if projects are disabled.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Delete Success"
+ "description": "Delete Success
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a project board. Returns a 404 Not Found status if projects are disabled.
"
+ ]
},
{
"verb": "get",
@@ -23920,33 +23919,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -24038,39 +24037,39 @@
"subcategoryLabel": "Collaborators",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Adds a collaborator to an organization project and sets their permission level. You must be an organization owner or a project admin to add a collaborator.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Adds a collaborator to an organization project and sets their permission level. You must be an organization owner or a project admin to add a collaborator.
",
"bodyParameters": [
{
"description": "The permission to grant the collaborator.
",
@@ -24148,40 +24147,40 @@
"subcategory": "collaborators",
"subcategoryLabel": "Collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a collaborator from an organization project. You must be an organization owner or a project admin to remove a collaborator.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a collaborator from an organization project. You must be an organization owner or a project admin to remove a collaborator.
"
+ ]
},
{
"verb": "get",
@@ -24247,33 +24246,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -24352,23 +24351,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -24464,28 +24463,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/projects/columns/367\",\n \"project_url\": \"https://api.github.com/projects/120\",\n \"cards_url\": \"https://api.github.com/projects/columns/367/cards\",\n \"id\": 367,\n \"node_id\": \"MDEzOlByb2plY3RDb2x1bW4zNjc=\",\n \"name\": \"To Do\",\n \"created_at\": \"2016-09-05T14:18:44Z\",\n \"updated_at\": \"2016-09-05T14:22:28Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -24532,18 +24531,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"resources\": {\n \"core\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1372700873,\n \"used\": 1\n },\n \"search\": {\n \"limit\": 30,\n \"remaining\": 18,\n \"reset\": 1372697452,\n \"used\": 12\n },\n \"graphql\": {\n \"limit\": 5000,\n \"remaining\": 4993,\n \"reset\": 1372700389,\n \"used\": 7\n },\n \"integration_manifest\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1551806725,\n \"used\": 1\n },\n \"code_scanning_upload\": {\n \"limit\": 500,\n \"remaining\": 499,\n \"reset\": 1551806725,\n \"used\": 1\n }\n },\n \"rate\": {\n \"limit\": 5000,\n \"remaining\": 4999,\n \"reset\": 1372700873,\n \"used\": 1\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -24597,35 +24596,35 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Reactions API. We recommend migrating your existing code to use the new delete reactions endpoints. For more information, see this blog post.
\nOAuth access tokens require the write:discussion scope, when deleting a team discussion or team discussion comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Reactions API. We recommend migrating your existing code to use the new delete reactions endpoints. For more information, see this blog post.
\nOAuth access tokens require the write:discussion scope, when deleting a team discussion or team discussion comment.
"
+ ]
},
{
"verb": "get",
@@ -24695,17 +24694,17 @@
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -25162,28 +25161,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"language\": null,\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"push\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"organization\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"parent\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"source\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n}\n
"
},
{
"httpStatusCode": "307",
"httpStatusMessage": "Temporary Redirect",
- "description": "Temporary Redirect"
+ "description": "Temporary Redirect
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -25621,23 +25620,23 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "307",
"httpStatusMessage": "Temporary Redirect",
- "description": "Temporary Redirect"
+ "description": "Temporary Redirect
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "If an organization owner has configured the organization to prevent members from deleting organization-owned repositories, a member will get this response:",
+ "description": "If an organization owner has configured the organization to prevent members from deleting organization-owned repositories, a member will get this response:
",
"payload": "{\n \"message\": \"Organization members cannot delete repositories.\",\n \"documentation_url\": \"https://docs.github.com/github-ae@latest/rest/reference/repos#delete-a-repository\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -25725,7 +25724,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"artifacts\": [\n {\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n },\n {\n \"id\": 13,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMw==\",\n \"name\": \"\",\n \"size_in_bytes\": 453,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -25804,7 +25803,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-01-21T14:59:22Z\",\n \"updated_at\": \"2020-01-21T14:59:22Z\"\n}\n
"
}
]
@@ -25877,15 +25876,15 @@
"subcategory": "artifacts",
"subcategoryLabel": "Artifacts",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes an artifact for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes an artifact for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -25964,15 +25963,15 @@
"subcategory": "artifacts",
"subcategoryLabel": "Artifacts",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download an archive for a repository. This URL expires after 1 minute. Look for Location: in\nthe response header to find the URL for the download. The :archive_format must be zip. Anyone with read access to\nthe repository can use this endpoint. If the repository is private you must use an access token with the repo scope.\nGitHub Apps must have the actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download an archive for a repository. This URL expires after 1 minute. Look for Location: in\nthe response header to find the URL for the download. The :archive_format must be zip. Anyone with read access to\nthe repository can use this endpoint. If the repository is private you must use an access token with the repo scope.\nGitHub Apps must have the actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -26048,7 +26047,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 399444496,\n \"run_id\": 29679449,\n \"run_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\",\n \"node_id\": \"MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\",\n \"head_sha\": \"f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/runs/399444496\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"started_at\": \"2020-01-20T17:42:40Z\",\n \"completed_at\": \"2020-01-20T17:44:39Z\",\n \"name\": \"build\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 1,\n \"started_at\": \"2020-01-20T09:42:40.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:41.000-08:00\"\n },\n {\n \"name\": \"Run actions/checkout@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 2,\n \"started_at\": \"2020-01-20T09:42:41.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Set up Ruby\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 3,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Run actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 4,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:48.000-08:00\"\n },\n {\n \"name\": \"Install Bundler\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 5,\n \"started_at\": \"2020-01-20T09:42:48.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:52.000-08:00\"\n },\n {\n \"name\": \"Install Gems\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 6,\n \"started_at\": \"2020-01-20T09:42:52.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:53.000-08:00\"\n },\n {\n \"name\": \"Run Tests\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 7,\n \"started_at\": \"2020-01-20T09:42:53.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:59.000-08:00\"\n },\n {\n \"name\": \"Deploy to Heroku\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 8,\n \"started_at\": \"2020-01-20T09:42:59.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Post actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 16,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Complete job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 17,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n }\n ],\n \"check_run_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\",\n \"labels\": [\n \"self-hosted\",\n \"foo\",\n \"bar\"\n ],\n \"runner_id\": 1,\n \"runner_name\": \"my runner\",\n \"runner_group_id\": 2,\n \"runner_group_name\": \"my runner group\"\n}\n
"
}
]
@@ -26121,15 +26120,15 @@
"subcategory": "workflow-jobs",
"subcategoryLabel": "Workflow jobs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a plain text file of logs for a workflow job. This link expires after 1 minute. Look\nfor Location: in the response header to find the URL for the download. Anyone with read access to the repository can\nuse this endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must\nhave the actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a plain text file of logs for a workflow job. This link expires after 1 minute. Look\nfor Location: in the response header to find the URL for the download. Anyone with read access to the repository can\nuse this endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must\nhave the actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -26195,7 +26194,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"enabled\": true,\n \"allowed_actions\": \"selected\",\n \"selected_actions_url\": \"https://api.github.com/repositories/42/actions/permissions/selected-actions\"\n}\n
"
}
]
@@ -26301,14 +26300,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the GitHub Actions permissions policy for enabling GitHub Actions and allowed actions in the repository.
\nIf the repository belongs to an organization or enterprise that has set restrictive permissions at the organization or enterprise levels, such as allowed_actions to selected actions, then you cannot override them for the repository.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the GitHub Actions permissions policy for enabling GitHub Actions and allowed actions in the repository.
\nIf the repository belongs to an organization or enterprise that has set restrictive permissions at the organization or enterprise levels, such as allowed_actions to selected actions, then you cannot override them for the repository.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -26399,7 +26398,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"github_owned_allowed\": true,\n \"verified_allowed\": false,\n \"patterns_allowed\": [\n \"monalisa/octocat@*\",\n \"docker/*\"\n ]\n}\n
"
}
]
@@ -26517,14 +26516,14 @@
"subcategoryLabel": "Permissions",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Sets the actions that are allowed in a repository. To use this endpoint, the repository permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for a repository.\"
\nIf the repository belongs to an organization or enterprise that has selected actions set at the organization or enterprise levels, then you cannot override any of the allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the repository must belong to an enterprise. If the repository does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "Sets the actions that are allowed in a repository. To use this endpoint, the repository permission policy for allowed_actions must be configured to selected. For more information, see \"Set GitHub Actions permissions for a repository.\"
\nIf the repository belongs to an organization or enterprise that has selected actions set at the organization or enterprise levels, then you cannot override any of the allowed actions settings.
\nTo use the patterns_allowed setting for private repositories, the repository must belong to an enterprise. If the repository does not belong to an enterprise, then the patterns_allowed setting only applies to public repositories.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the administration repository permission to use this API.
",
"bodyParameters": [
{
"type": "boolean",
@@ -26642,7 +26641,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"runners\": [\n {\n \"id\": 23,\n \"name\": \"linux_runner\",\n \"os\": \"linux\",\n \"status\": \"online\",\n \"busy\": true,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 11,\n \"name\": \"Linux\",\n \"type\": \"read-only\"\n }\n ]\n },\n {\n \"id\": 24,\n \"name\": \"mac_runner\",\n \"os\": \"macos\",\n \"status\": \"offline\",\n \"busy\": false,\n \"labels\": [\n {\n \"id\": 5,\n \"name\": \"self-hosted\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 7,\n \"name\": \"X64\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 20,\n \"name\": \"macOS\",\n \"type\": \"read-only\"\n },\n {\n \"id\": 21,\n \"name\": \"no-gpu\",\n \"type\": \"custom\"\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -26715,15 +26714,15 @@
"subcategory": "self-hosted-runners",
"subcategoryLabel": "Self hosted runners",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Forces the removal of a self-hosted runner from a repository. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the repo\nscope to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Forces the removal of a self-hosted runner from a repository. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the repo\nscope to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -26885,7 +26884,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"workflow_runs\": [\n {\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n }\n ]\n}\n
"
}
]
@@ -26975,7 +26974,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"check_suite_id\": 42,\n \"check_suite_node_id\": \"MDEwOkNoZWNrU3VpdGU0Mg==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n}\n
"
}
]
@@ -27048,15 +27047,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Delete a specific workflow run. Anyone with write access to the repository can use this endpoint. If the repository is\nprivate you must use an access token with the repo scope. GitHub Apps must have the actions:write permission to use\nthis endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Delete a specific workflow run. Anyone with write access to the repository can use this endpoint. If the repository is\nprivate you must use an access token with the repo scope. GitHub Apps must have the actions:write permission to use\nthis endpoint.
"
+ ]
},
{
"verb": "get",
@@ -27152,7 +27151,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"artifacts\": [\n {\n \"id\": 11,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMQ==\",\n \"name\": \"Rails\",\n \"size_in_bytes\": 556,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n },\n {\n \"id\": 13,\n \"node_id\": \"MDg6QXJ0aWZhY3QxMw==\",\n \"name\": \"\",\n \"size_in_bytes\": 453,\n \"url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13\",\n \"archive_download_url\": \"https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13/zip\",\n \"expired\": false,\n \"created_at\": \"2020-01-10T14:59:22Z\",\n \"expires_at\": \"2020-03-21T14:59:22Z\",\n \"updated_at\": \"2020-02-21T14:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -27252,7 +27251,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"check_suite_id\": 42,\n \"check_suite_node_id\": \"MDEwOkNoZWNrU3VpdGU0Mg==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n}\n
"
}
]
@@ -27361,13 +27360,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"jobs\": [\n {\n \"id\": 399444496,\n \"run_id\": 29679449,\n \"run_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\",\n \"node_id\": \"MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\",\n \"head_sha\": \"f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/runs/399444496\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"started_at\": \"2020-01-20T17:42:40Z\",\n \"completed_at\": \"2020-01-20T17:44:39Z\",\n \"name\": \"build\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 1,\n \"started_at\": \"2020-01-20T09:42:40.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:41.000-08:00\"\n },\n {\n \"name\": \"Run actions/checkout@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 2,\n \"started_at\": \"2020-01-20T09:42:41.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Set up Ruby\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 3,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Run actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 4,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:48.000-08:00\"\n },\n {\n \"name\": \"Install Bundler\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 5,\n \"started_at\": \"2020-01-20T09:42:48.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:52.000-08:00\"\n },\n {\n \"name\": \"Install Gems\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 6,\n \"started_at\": \"2020-01-20T09:42:52.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:53.000-08:00\"\n },\n {\n \"name\": \"Run Tests\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 7,\n \"started_at\": \"2020-01-20T09:42:53.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:59.000-08:00\"\n },\n {\n \"name\": \"Deploy to Heroku\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 8,\n \"started_at\": \"2020-01-20T09:42:59.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Post actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 16,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Complete job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 17,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n }\n ],\n \"check_run_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\",\n \"labels\": [\n \"self-hosted\",\n \"foo\",\n \"bar\"\n ],\n \"runner_id\": 1,\n \"runner_name\": \"my runner\",\n \"runner_group_id\": 2,\n \"runner_group_name\": \"my runner group\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -27449,15 +27448,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download an archive of log files for a specific workflow run attempt. This link expires after\n1 minute. Look for Location: in the response header to find the URL for the download. Anyone with read access to\nthe repository can use this endpoint. If the repository is private you must use an access token with the repo scope.\nGitHub Apps must have the actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download an archive of log files for a specific workflow run attempt. This link expires after\n1 minute. Look for Location: in the response header to find the URL for the download. Anyone with read access to\nthe repository can use this endpoint. If the repository is private you must use an access token with the repo scope.\nGitHub Apps must have the actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -27527,15 +27526,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Cancels a workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Cancels a workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -27646,7 +27645,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"jobs\": [\n {\n \"id\": 399444496,\n \"run_id\": 29679449,\n \"run_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\",\n \"node_id\": \"MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\",\n \"head_sha\": \"f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/runs/399444496\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"started_at\": \"2020-01-20T17:42:40Z\",\n \"completed_at\": \"2020-01-20T17:44:39Z\",\n \"name\": \"build\",\n \"steps\": [\n {\n \"name\": \"Set up job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 1,\n \"started_at\": \"2020-01-20T09:42:40.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:41.000-08:00\"\n },\n {\n \"name\": \"Run actions/checkout@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 2,\n \"started_at\": \"2020-01-20T09:42:41.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Set up Ruby\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 3,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:45.000-08:00\"\n },\n {\n \"name\": \"Run actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 4,\n \"started_at\": \"2020-01-20T09:42:45.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:48.000-08:00\"\n },\n {\n \"name\": \"Install Bundler\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 5,\n \"started_at\": \"2020-01-20T09:42:48.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:52.000-08:00\"\n },\n {\n \"name\": \"Install Gems\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 6,\n \"started_at\": \"2020-01-20T09:42:52.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:53.000-08:00\"\n },\n {\n \"name\": \"Run Tests\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 7,\n \"started_at\": \"2020-01-20T09:42:53.000-08:00\",\n \"completed_at\": \"2020-01-20T09:42:59.000-08:00\"\n },\n {\n \"name\": \"Deploy to Heroku\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 8,\n \"started_at\": \"2020-01-20T09:42:59.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Post actions/cache@v2\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 16,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n },\n {\n \"name\": \"Complete job\",\n \"status\": \"completed\",\n \"conclusion\": \"success\",\n \"number\": 17,\n \"started_at\": \"2020-01-20T09:44:39.000-08:00\",\n \"completed_at\": \"2020-01-20T09:44:39.000-08:00\"\n }\n ],\n \"check_run_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\",\n \"labels\": [\n \"self-hosted\",\n \"foo\",\n \"bar\"\n ],\n \"runner_id\": 1,\n \"runner_name\": \"my runner\",\n \"runner_group_id\": 2,\n \"runner_group_name\": \"my runner group\"\n }\n ]\n}\n
"
}
]
@@ -27719,15 +27718,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download an archive of log files for a workflow run. This link expires after 1 minute. Look for\nLocation: in the response header to find the URL for the download. Anyone with read access to the repository can use\nthis endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must have\nthe actions:read permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download an archive of log files for a workflow run. This link expires after 1 minute. Look for\nLocation: in the response header to find the URL for the download. Anyone with read access to the repository can use\nthis endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must have\nthe actions:read permission to use this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -27797,15 +27796,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes all logs for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes all logs for a workflow run. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -27877,15 +27876,15 @@
"subcategory": "workflow-runs",
"subcategoryLabel": "Workflow runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Re-runs your workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Re-runs your workflow run using its id. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -27961,7 +27960,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"billable\": {\n \"UBUNTU\": {\n \"total_ms\": 180000,\n \"jobs\": 1,\n \"job_runs\": [\n {\n \"job_id\": 1,\n \"duration_ms\": 180000\n }\n ]\n },\n \"MACOS\": {\n \"total_ms\": 240000,\n \"jobs\": 4,\n \"job_runs\": [\n {\n \"job_id\": 2,\n \"duration_ms\": 60000\n },\n {\n \"job_id\": 3,\n \"duration_ms\": 60000\n },\n {\n \"job_id\": 4,\n \"duration_ms\": 60000\n },\n {\n \"job_id\": 5,\n \"duration_ms\": 60000\n }\n ]\n },\n \"WINDOWS\": {\n \"total_ms\": 300000,\n \"jobs\": 2,\n \"job_runs\": [\n {\n \"job_id\": 6,\n \"duration_ms\": 150000\n },\n {\n \"job_id\": 7,\n \"duration_ms\": 150000\n }\n ]\n }\n },\n \"run_duration_ms\": 500000\n}\n
"
}
]
@@ -28050,7 +28049,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"secrets\": [\n {\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n },\n {\n \"name\": \"GIST_ID\",\n \"created_at\": \"2020-01-10T10:59:22Z\",\n \"updated_at\": \"2020-01-11T11:59:22Z\"\n }\n ]\n}\n
"
}
]
@@ -28119,7 +28118,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key_id\": \"012345678912345678\",\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\"\n}\n
"
}
]
@@ -28198,7 +28197,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"GH_TOKEN\",\n \"created_at\": \"2019-08-10T14:59:22Z\",\n \"updated_at\": \"2020-01-10T14:59:22Z\"\n}\n
"
}
]
@@ -28250,7 +28249,7 @@
}
],
"summary": "Create or update a repository secret",
- "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -28311,15 +28310,15 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when creating a secret"
+ "description": "Response when creating a secret
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when updating a secret"
+ "description": "Response when updating a secret
"
}
],
- "descriptionHTML": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
+ "descriptionHTML": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\nLibSodium. You must authenticate using an access\ntoken with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use\nthis endpoint.
\nExample encrypting a secret using Node.js
\nEncrypt your secret using the tweetsodium library.
\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n
\nExample encrypting a secret using Python
\nEncrypt your secret using pynacl with Python 3.
\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n
\nExample encrypting a secret using C#
\nEncrypt your secret using the Sodium.Core package.
\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n
\nExample encrypting a secret using Ruby
\nEncrypt your secret using the rbnacl gem.
\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n\nputs Base64.strict_encode64(encrypted_secret)\n
",
"bodyParameters": [
{
"type": "string",
@@ -28410,15 +28409,15 @@
"subcategory": "secrets",
"subcategoryLabel": "Secrets",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a secret in a repository using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a secret in a repository using the secret name. You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the secrets repository permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -28504,7 +28503,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"workflows\": [\n {\n \"id\": 161335,\n \"node_id\": \"MDg6V29ya2Zsb3cxNjEzMzU=\",\n \"name\": \"CI\",\n \"path\": \".github/workflows/blank.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/161335\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/161335\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/CI/badge.svg\"\n },\n {\n \"id\": 269289,\n \"node_id\": \"MDE4OldvcmtmbG93IFNlY29uZGFyeTI2OTI4OQ==\",\n \"name\": \"Linter\",\n \"path\": \".github/workflows/linter.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/269289\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/269289\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/Linter/badge.svg\"\n }\n ]\n}\n
"
}
]
@@ -28590,7 +28589,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 161335,\n \"node_id\": \"MDg6V29ya2Zsb3cxNjEzMzU=\",\n \"name\": \"CI\",\n \"path\": \".github/workflows/blank.yaml\",\n \"state\": \"active\",\n \"created_at\": \"2020-01-08T23:48:37.000-08:00\",\n \"updated_at\": \"2020-01-08T23:50:21.000-08:00\",\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/161335\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/blob/master/.github/workflows/161335\",\n \"badge_url\": \"https://github.com/octo-org/octo-repo/workflows/CI/badge.svg\"\n}\n
"
}
]
@@ -28670,15 +28669,15 @@
"subcategory": "workflows",
"subcategoryLabel": "Workflows",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Disables a workflow and sets the state of the workflow to disabled_manually. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Disables a workflow and sets the state of the workflow to disabled_manually. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "post",
@@ -28800,14 +28799,14 @@
"subcategoryLabel": "Workflows",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "You can use this endpoint to manually trigger a GitHub Actions workflow run. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must configure your GitHub Actions workflow to run when the workflow_dispatch webhook event occurs. The inputs are configured in the workflow file. For more information about how to configure the workflow_dispatch event in the workflow file, see \"Events that trigger workflows.\"
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint. For more information, see \"Creating a personal access token for the command line.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "You can use this endpoint to manually trigger a GitHub Actions workflow run. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must configure your GitHub Actions workflow to run when the workflow_dispatch webhook event occurs. The inputs are configured in the workflow file. For more information about how to configure the workflow_dispatch event in the workflow file, see \"Events that trigger workflows.\"
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint. For more information, see \"Creating a personal access token for the command line.\"
",
"bodyParameters": [
{
"type": "string",
@@ -28908,15 +28907,15 @@
"subcategory": "workflows",
"subcategoryLabel": "Workflows",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Enables a workflow and sets the state of the workflow to active. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Enables a workflow and sets the state of the workflow to active. You can replace workflow_id with the workflow file name. For example, you could use main.yaml.
\nYou must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -29095,7 +29094,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"workflow_runs\": [\n {\n \"id\": 30433642,\n \"name\": \"Build\",\n \"node_id\": \"MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\",\n \"head_branch\": \"master\",\n \"head_sha\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"run_number\": 562,\n \"event\": \"push\",\n \"status\": \"queued\",\n \"conclusion\": null,\n \"workflow_id\": 159038,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\",\n \"html_url\": \"https://github.com/octo-org/octo-repo/actions/runs/30433642\",\n \"pull_requests\": [],\n \"created_at\": \"2020-01-22T19:33:08Z\",\n \"updated_at\": \"2020-01-22T19:33:08Z\",\n \"jobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\",\n \"logs_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\",\n \"check_suite_url\": \"https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\",\n \"artifacts_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\",\n \"cancel_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\",\n \"rerun_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\",\n \"workflow_url\": \"https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\",\n \"head_commit\": {\n \"id\": \"acb5820ced9479c074f688cc328bf03f341a511d\",\n \"tree_id\": \"d23f6eedb1e1b9610bbc754ddb5197bfe7271223\",\n \"message\": \"Create linter.yaml\",\n \"timestamp\": \"2020-01-22T19:33:05Z\",\n \"author\": {\n \"name\": \"Octo Cat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\"\n }\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"head_repository\": {\n \"id\": 217723378,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\",\n \"name\": \"octo-repo\",\n \"full_name\": \"octo-org/octo-repo\",\n \"private\": true,\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/octo-org/octo-repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octo-org/octo-repo\",\n \"forks_url\": \"https://api.github.com/repos/octo-org/octo-repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octo-org/octo-repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octo-org/octo-repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octo-org/octo-repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octo-org/octo-repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octo-org/octo-repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octo-org/octo-repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octo-org/octo-repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octo-org/octo-repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octo-org/octo-repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octo-org/octo-repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octo-org/octo-repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octo-org/octo-repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octo-org/octo-repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octo-org/octo-repo/deployments\"\n }\n }\n ]\n}\n
"
}
]
@@ -29181,7 +29180,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"billable\": {\n \"UBUNTU\": {\n \"total_ms\": 180000\n },\n \"MACOS\": {\n \"total_ms\": 240000\n },\n \"WINDOWS\": {\n \"total_ms\": 300000\n }\n }\n}\n
"
}
]
@@ -29270,13 +29269,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -29347,20 +29346,20 @@
"subcategory": "assignees",
"subcategoryLabel": "Assignees",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Checks if a user has permission to be assigned to an issue in this repository.
\nIf the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
\nOtherwise a 404 status code is returned.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "If the `assignee` can be assigned to issues in the repository, a `204` header with no content is returned."
+ "description": "If the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Otherwise a `404` status code is returned."
+ "description": "Otherwise a 404 status code is returned.
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Checks if a user has permission to be assigned to an issue in this repository.
\nIf the assignee can be assigned to issues in the repository, a 204 header with no content is returned.
\nOtherwise a 404 status code is returned.
"
+ ]
},
{
"verb": "get",
@@ -29436,7 +29435,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"key_prefix\": \"TICKET-\",\n \"url_template\": \"https://example.com/TICKET?query=<num>\"\n }\n]\n
"
}
]
@@ -29563,13 +29562,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "response",
+ "description": "response
",
"payload": "{\n \"id\": 1,\n \"key_prefix\": \"TICKET-\",\n \"url_template\": \"https://example.com/TICKET?query=<num>\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -29647,13 +29646,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"key_prefix\": \"TICKET-\",\n \"url_template\": \"https://example.com/TICKET?query=<num>\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -29725,20 +29724,20 @@
"subcategory": "autolinks",
"subcategoryLabel": "Autolinks",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This deletes a single autolink reference by ID that was configured for the given repository.
\nInformation about autolinks are only available to repository administrators.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This deletes a single autolink reference by ID that was configured for the given repository.
\nInformation about autolinks are only available to repository administrators.
"
+ ]
},
{
"verb": "get",
@@ -29832,13 +29831,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"protected\": true,\n \"protection\": {\n \"required_status_checks\": {\n \"enforcement_level\": \"non_admins\",\n \"contexts\": [\n \"ci-test\",\n \"linter\"\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/octocat/hello-world/branches/master/protection\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -29910,29 +29909,29 @@
"categoryLabel": "Branches",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -30009,13 +30008,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection\",\n \"required_status_checks\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\",\n \"enforcement_level\": \"non_admins\"\n },\n \"enforce_admins\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n },\n \"required_pull_request_reviews\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n },\n \"restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"apps_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"apps\": [\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n ]\n },\n \"required_linear_history\": {\n \"enabled\": true\n },\n \"allow_force_pushes\": {\n \"enabled\": true\n },\n \"allow_deletions\": {\n \"enabled\": true\n },\n \"required_conversation_resolution\": {\n \"enabled\": true\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -30916,29 +30915,29 @@
"subcategoryLabel": "Branch protection",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nProtecting a branch requires admin or owner permissions to the repository.
\nNote: Passing new arrays of users and teams replaces their previous values.
\nNote: The list of users, apps, and teams in total is limited to 100 items.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nProtecting a branch requires admin or owner permissions to the repository.
\nNote: Passing new arrays of users and teams replaces their previous values.
\nNote: The list of users, apps, and teams in total is limited to 100 items.
",
"bodyParameters": [
{
"type": "object or nullable",
@@ -31775,20 +31774,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -31865,7 +31864,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n}\n
"
}
]
@@ -31945,7 +31944,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\",\n \"enabled\": true\n}\n
"
}
]
@@ -32019,20 +32018,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nRemoving admin enforcement requires admin or owner permissions to the repository and branch protection to be enabled.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nRemoving admin enforcement requires admin or owner permissions to the repository and branch protection to be enabled.
"
+ ]
},
{
"verb": "get",
@@ -32109,7 +32108,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n}\n
"
}
]
@@ -32384,13 +32383,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\",\n \"dismissal_restrictions\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n },\n \"dismiss_stale_reviews\": true,\n \"require_code_owner_reviews\": true,\n \"required_approving_review_count\": 2\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -32627,20 +32626,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -32717,13 +32716,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures\",\n \"enabled\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -32802,13 +32801,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures\",\n \"enabled\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -32881,20 +32880,20 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nWhen authenticated with admin or owner permissions to the repository, you can use this endpoint to disable required signed commits on a branch. You must enable branch protection to require signed commits.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nWhen authenticated with admin or owner permissions to the repository, you can use this endpoint to disable required signed commits on a branch. You must enable branch protection to require signed commits.
"
+ ]
},
{
"verb": "get",
@@ -32971,13 +32970,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"strict\": true,\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -33157,18 +33156,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\",\n \"strict\": true,\n \"contexts\": [\n \"continuous-integration/travis-ci\"\n ],\n \"contexts_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -33326,15 +33325,15 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
"
+ ]
},
{
"verb": "get",
@@ -33411,13 +33410,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -33554,23 +33553,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\",\n \"continuous-integration/jenkins\"\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -33707,18 +33706,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -33854,18 +33853,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n \"continuous-integration/travis-ci\"\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -33944,13 +33943,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions\",\n \"users_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/users\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"apps_url\": \"https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\",\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"apps\": [\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -34023,15 +34022,15 @@
"subcategory": "branch-protection",
"subcategoryLabel": "Branch protection",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nDisables the ability to restrict who can push to this branch.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see GitHub's products in the GitHub Help documentation.
\nDisables the ability to restrict who can push to this branch.
"
+ ]
},
{
"verb": "get",
@@ -34108,13 +34107,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -34250,13 +34249,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -34392,13 +34391,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -34533,13 +34532,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -34618,13 +34617,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -34761,13 +34760,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -34904,13 +34903,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -35046,13 +35045,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -35131,13 +35130,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -35273,13 +35272,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -35415,13 +35414,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -35556,13 +35555,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -37720,7 +37719,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n}\n
"
}
]
@@ -38814,7 +38813,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n}\n
"
}
],
@@ -39854,7 +39853,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"path\": \"README.md\",\n \"start_line\": 2,\n \"end_line\": 2,\n \"start_column\": 5,\n \"end_column\": 10,\n \"annotation_level\": \"warning\",\n \"title\": \"Spell Checker\",\n \"message\": \"Check your spelling for 'banaas'.\",\n \"raw_details\": \"Do you mean 'bananas' or 'banana'?\",\n \"blob_href\": \"https://api.github.com/repos/github/rest-api-description/git/blobs/abc\"\n }\n]\n
"
}
]
@@ -39927,30 +39926,30 @@
"subcategory": "runs",
"subcategoryLabel": "Runs",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check run, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if the check run is not rerequestable or doesn't belong to the authenticated GitHub App"
+ "description": "Forbidden if the check run is not rerequestable or doesn't belong to the authenticated GitHub App
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation error if the check run is not rerequestable"
+ "description": "Validation error if the check run is not rerequestable
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check run, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
"
+ ]
},
{
"verb": "post",
@@ -40054,13 +40053,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "when the suite already existed",
+ "description": "when the suite already existed
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when the suite was created",
+ "description": "Response when the suite was created
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
}
]
@@ -40213,7 +40212,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"preferences\": {\n \"auto_trigger_checks\": [\n {\n \"app_id\": 2,\n \"setting\": true\n },\n {\n \"app_id\": 4,\n \"setting\": false\n }\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n }\n}\n
"
}
],
@@ -40358,7 +40357,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n}\n
"
}
]
@@ -40497,7 +40496,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_runs\": [\n {\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -40570,15 +40569,15 @@
"subcategory": "suites",
"subcategoryLabel": "Suites",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check suite, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
",
"responses": [
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.
\nTo rerequest a check suite, your GitHub App must have the checks:read permission on a private repository or pull access to a public repository.
"
+ ]
},
{
"verb": "get",
@@ -40713,23 +40712,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"number\": 4,\n \"created_at\": \"2020-02-13T12:29:18Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/4\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/4\",\n \"state\": \"open\",\n \"dismissed_by\": null,\n \"dismissed_at\": null,\n \"dismissed_reason\": null,\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"description\": \"Arbitrary file write during zip extraction\",\n \"name\": \"js/zipslip\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"open\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/4/instances\"\n },\n {\n \"number\": 3,\n \"created_at\": \"2020-02-13T12:29:18Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/3\",\n \"state\": \"dismissed\",\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-02-14T12:29:18Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"description\": \"Arbitrary file write during zip extraction\",\n \"name\": \"js/zipslip\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"open\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"lib/ab12-gen.js\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": []\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -40807,23 +40806,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-06-19T11:21:34Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/42\",\n \"state\": \"dismissed\",\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 54933897,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-02-14T12:29:18Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"security_severity_level\": \"high\",\n \"description\": \"Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\",\n \"name\": \"js/zipslip\",\n \"full_description\": \"Extracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten.\",\n \"tags\": [\n \"security\",\n \"external/cwe/cwe-022\"\n ],\n \"help\": \"# Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\\\\nExtracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten ...\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"dismissed\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -40979,23 +40978,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-08-25T21:28:36Z\",\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42\",\n \"html_url\": \"https://github.com/octocat/hello-world/code-scanning/42\",\n \"state\": \"dismissed\",\n \"dismissed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"dismissed_at\": \"2020-09-02T22:34:56Z\",\n \"dismissed_reason\": \"false positive\",\n \"rule\": {\n \"id\": \"js/zipslip\",\n \"severity\": \"error\",\n \"security_severity_level\": \"high\",\n \"description\": \"Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\",\n \"name\": \"js/zipslip\",\n \"full_description\": \"Extracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten.\",\n \"tags\": [\n \"security\",\n \"external/cwe/cwe-022\"\n ],\n \"help\": \"# Arbitrary file write during zip extraction (\\\"Zip Slip\\\")\\\\nExtracting files from a malicious zip archive without validating that the destination file path is within the destination directory can cause files outside the destination directory to be overwritten ...\"\n },\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"most_recent_instance\": {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"{}\",\n \"state\": \"dismissed\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"spec-main/api-session-spec.ts\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"test\"\n ]\n },\n \"instances_url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -41104,23 +41103,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/main\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"\",\n \"state\": \"open\",\n \"commit_sha\": \"39406e42cb832f683daa691dd652a8dc36ee8930\",\n \"message\": {\n \"text\": \"This path depends on a user-provided value.\"\n },\n \"location\": {\n \"path\": \"lib/ab12-gen.js\",\n \"start_line\": 917,\n \"end_line\": 917,\n \"start_column\": 7,\n \"end_column\": 18\n },\n \"classifications\": [\n \"library\"\n ]\n },\n {\n \"ref\": \"refs/pull/3740/merge\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"environment\": \"\",\n \"category\": \".github/workflows/codeql-analysis.yml:CodeQL-Build\",\n \"state\": \"fixed\",\n \"commit_sha\": \"b09da05606e27f463a2b49287684b4ae777092f2\",\n \"message\": {\n \"text\": \"This suffix check is missing a length comparison to correctly handle lastIndexOf returning -1.\"\n },\n \"location\": {\n \"path\": \"app/script.js\",\n \"start_line\": 2,\n \"end_line\": 2,\n \"start_column\": 10,\n \"end_column\": 50\n },\n \"classifications\": [\n \"source\"\n ]\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -41251,23 +41250,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/main\",\n \"commit_sha\": \"d99612c3e1f2970085cfbaeadf8f010ef69bad83\",\n \"analysis_key\": \".github/workflows/codeql-analysis.yml:analyze\",\n \"environment\": \"{\\\"language\\\":\\\"python\\\"}\",\n \"error\": \"\",\n \"category\": \".github/workflows/codeql-analysis.yml:analyze/language:python\",\n \"created_at\": \"2020-08-27T15:05:21Z\",\n \"results_count\": 17,\n \"rules_count\": 49,\n \"id\": 201,\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/201\",\n \"sarif_id\": \"6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53\",\n \"tool\": {\n \"name\": \"CodeQL\",\n \"guid\": null,\n \"version\": \"2.4.0\"\n },\n \"deletable\": true,\n \"warning\": \"\"\n },\n {\n \"ref\": \"refs/heads/my-branch\",\n \"commit_sha\": \"c8cff6510d4d084fb1b4aa13b64b97ca12b07321\",\n \"analysis_key\": \".github/workflows/shiftleft.yml:build\",\n \"environment\": \"{}\",\n \"error\": \"\",\n \"category\": \".github/workflows/shiftleft.yml:build/\",\n \"created_at\": \"2020-08-31T22:46:44Z\",\n \"results_count\": 17,\n \"rules_count\": 32,\n \"id\": 200,\n \"url\": \"https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/200\",\n \"sarif_id\": \"8981cd8e-b078-4ac3-a3be-1dad7dbd0b582\",\n \"tool\": {\n \"name\": \"Python Security Analysis\",\n \"guid\": null,\n \"version\": \"1.2.0\"\n },\n \"deletable\": true,\n \"warning\": \"\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -41348,17 +41347,17 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -41450,22 +41449,22 @@
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -41675,27 +41674,27 @@
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request if the sarif field is invalid"
+ "description": "Bad Request if the sarif field is invalid
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if the repository is archived or if github advanced security is not enabled for this repository"
+ "description": "Response if the repository is archived or if github advanced security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "413",
"httpStatusMessage": "Payload Too Large",
- "description": "Payload Too Large if the sarif field is too large"
+ "description": "Payload Too Large if the sarif field is too large
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -41776,17 +41775,17 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Response if GitHub Advanced Security is not enabled for this repository"
+ "description": "Response if GitHub Advanced Security is not enabled for this repository
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if the sarif id does not match any upload"
+ "description": "Not Found if the sarif id does not match any upload
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -41888,13 +41887,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"permissions\": {\n \"pull\": true,\n \"push\": true,\n \"admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -41963,20 +41962,20 @@
"category": "collaborators",
"categoryLabel": "Collaborators",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "For organization-owned repositories, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners.
\nTeam members will include the members of child teams.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if user is a collaborator"
+ "description": "Response if user is a collaborator
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if user is not a collaborator"
+ "description": "Not Found if user is not a collaborator
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "For organization-owned repositories, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners.
\nTeam members will include the members of child teams.
"
+ ]
},
{
"verb": "put",
@@ -42116,23 +42115,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response when a new invitation is created",
+ "description": "Response when a new invitation is created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\"\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when person is already a collaborator"
+ "description": "Response when person is already a collaborator
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -42202,14 +42201,14 @@
"categoryLabel": "Collaborators",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -42282,13 +42281,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if user has admin permissions",
+ "description": "if user has admin permissions
",
"payload": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -42376,7 +42375,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -42455,13 +42454,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -42577,13 +42576,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Nice change\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -42656,19 +42655,19 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -42782,13 +42781,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -42922,24 +42921,24 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -43018,15 +43017,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a commit comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a commit comment.
"
+ ]
},
{
"verb": "get",
@@ -43162,28 +43161,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -43260,13 +43259,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"branch_5\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"protected\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -43365,7 +43364,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -43541,18 +43540,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/comments/1\",\n \"id\": 1,\n \"node_id\": \"MDEzOkNvbW1pdENvbW1lbnQx\",\n \"body\": \"Great stuff\",\n \"path\": \"file1.txt\",\n \"position\": 4,\n \"line\": 14,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author_association\": \"COLLABORATOR\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -43649,7 +43648,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false\n }\n]\n
"
}
]
@@ -43747,23 +43746,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ],\n \"stats\": {\n \"additions\": 104,\n \"deletions\": 4,\n \"total\": 108\n },\n \"files\": [\n {\n \"filename\": \"file1.txt\",\n \"additions\": 10,\n \"deletions\": 2,\n \"changes\": 12,\n \"status\": \"modified\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"patch\": \"@@ -29,7 +29,7 @@\\n.....\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -43911,7 +43910,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_runs\": [\n {\n \"id\": 4,\n \"head_sha\": \"ce587453ced02b1526dfb4cb910479d431683101\",\n \"node_id\": \"MDg6Q2hlY2tSdW40\",\n \"external_id\": \"\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-runs/4\",\n \"html_url\": \"https://github.com/github/hello-world/runs/4\",\n \"details_url\": \"https://example.com\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"started_at\": \"2018-05-04T01:14:52Z\",\n \"completed_at\": \"2018-05-04T01:14:52Z\",\n \"output\": {\n \"title\": \"Mighty Readme report\",\n \"summary\": \"There are 0 failures, 2 warnings, and 1 notice.\",\n \"text\": \"You may have some misspelled words on lines 2 and 4. You also may want to add a section in your README about how to install your app.\",\n \"annotations_count\": 2,\n \"annotations_url\": \"https://api.github.com/repos/github/hello-world/check-runs/4/annotations\"\n },\n \"name\": \"mighty_readme\",\n \"check_suite\": {\n \"id\": 5\n },\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"pull_requests\": [\n {\n \"url\": \"https://api.github.com/repos/github/hello-world/pulls/1\",\n \"id\": 1934,\n \"number\": 3956,\n \"head\": {\n \"ref\": \"say-hello\",\n \"sha\": \"3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n },\n \"base\": {\n \"ref\": \"master\",\n \"sha\": \"e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\",\n \"repo\": {\n \"id\": 526,\n \"url\": \"https://api.github.com/repos/github/hello-world\",\n \"name\": \"hello-world\"\n }\n }\n }\n ]\n }\n ]\n}\n
"
}
]
@@ -44032,7 +44031,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"check_suites\": [\n {\n \"id\": 5,\n \"node_id\": \"MDEwOkNoZWNrU3VpdGU1\",\n \"head_branch\": \"master\",\n \"head_sha\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"status\": \"completed\",\n \"conclusion\": \"neutral\",\n \"url\": \"https://api.github.com/repos/github/hello-world/check-suites/5\",\n \"before\": \"146e867f55c26428e5f9fade55a9bbf5e95a7912\",\n \"after\": \"d6fde92930d4715a2b49857d24b940956b26d2d3\",\n \"pull_requests\": [],\n \"app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"head_commit\": {\n \"id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"tree_id\": \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\",\n \"message\": \"Merge pull request #6 from Spaceghost/patch-1\\n\\nNew line at end of file.\",\n \"timestamp\": \"2016-10-10T00:00:00Z\",\n \"author\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n }\n },\n \"latest_check_runs_count\": 1,\n \"check_runs_url\": \"https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\"\n }\n ]\n}\n
"
}
]
@@ -44132,13 +44131,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"state\": \"success\",\n \"statuses\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\"\n },\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"id\": 2,\n \"node_id\": \"MDY6U3RhdHVzMg==\",\n \"state\": \"success\",\n \"description\": \"Testing has completed successfully\",\n \"target_url\": \"https://ci.example.com/2000/output\",\n \"context\": \"security/brakeman\",\n \"created_at\": \"2012-08-20T01:19:13Z\",\n \"updated_at\": \"2012-08-20T01:19:13Z\"\n }\n ],\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"total_count\": 2,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e/status\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -44237,13 +44236,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
}
]
},
@@ -44339,18 +44338,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/compare/master...topic\",\n \"html_url\": \"https://github.com/octocat/Hello-World/compare/master...topic\",\n \"permalink_url\": \"https://github.com/octocat/Hello-World/compare/octocat:bbcd538c8e72b8c175046e27cc8f907076331401...octocat:0328041d1152db8ae77652d1618a02e57f745f17\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/compare/master...topic.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/compare/master...topic.patch\",\n \"base_commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n },\n \"merge_base_commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n },\n \"status\": \"behind\",\n \"ahead_by\": 1,\n \"behind_by\": 2,\n \"total_commits\": 1,\n \"commits\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n ],\n \"files\": [\n {\n \"sha\": \"bbcd538c8e72b8c175046e27cc8f907076331401\",\n \"filename\": \"file1.txt\",\n \"status\": \"added\",\n \"additions\": 103,\n \"deletions\": 21,\n \"changes\": 124,\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/file1.txt?ref=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"patch\": \"@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -44463,17 +44462,17 @@
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Found"
+ "description": "Found
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -44783,29 +44782,29 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": {\n \"name\": \"hello.txt\",\n \"path\": \"notes/hello.txt\",\n \"sha\": \"a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"size\": 9,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\",\n \"git_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"download_url\": \"https://raw.githubusercontent.com/octocat/HelloWorld/master/notes/hello.txt\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"git\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/a56507ed892d05a37c6d6128c260937ea4d287bd\",\n \"html\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\"\n }\n },\n \"commit\": {\n \"sha\": \"18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"node_id\": \"MDY6Q29tbWl0MThhNDNjZDhlMWUzYTc5Yzc4NmUzZDgwOGE3M2QyM2I2ZDIxMmIxNg==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/18a43cd8e1e3a79c786e3d808a73d23b6d212b16\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/9a21f8e2018f42ffcf369b24d2cd20bc25c9e66f\",\n \"sha\": \"9a21f8e2018f42ffcf369b24d2cd20bc25c9e66f\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/da5a433788da5c255edad7979b328b67d79f53f6\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/da5a433788da5c255edad7979b328b67d79f53f6\",\n \"sha\": \"da5a433788da5c255edad7979b328b67d79f53f6\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": {\n \"name\": \"hello.txt\",\n \"path\": \"notes/hello.txt\",\n \"sha\": \"95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"size\": 9,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"html_url\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\",\n \"git_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"download_url\": \"https://raw.githubusercontent.com/octocat/HelloWorld/master/notes/hello.txt\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\",\n \"git\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/95b966ae1c166bd92f8ae7d1c313e738c731dfc3\",\n \"html\": \"https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\"\n }\n },\n \"commit\": {\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -45237,28 +45236,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": null,\n \"commit\": {\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/git/commit/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
],
"bodyParameters": [
@@ -45493,23 +45492,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if repository contains content",
+ "description": "if repository contains content
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"contributions\": 32\n }\n]\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if repository is empty"
+ "description": "Response if repository is empty
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -45640,7 +45639,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n }\n]\n
"
}
]
@@ -45840,30 +45839,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Deployments offer a few configurable parameters with certain defaults.
\nThe ref parameter can be any named branch, tag, or SHA. At GitHub AE we often deploy branches and verify them\nbefore we merge a pull request.
\nThe environment parameter allows deployments to be issued to different runtime environments. Teams often have\nmultiple environments for verifying their applications, such as production, staging, and qa. This parameter\nmakes it easier to track which environments have requested deployments. The default environment is production.
\nThe auto_merge parameter is used to ensure that the requested ref is not behind the repository's default branch. If\nthe ref is behind the default branch for the repository, we will attempt to merge it for you. If the merge succeeds,\nthe API will return a successful merge commit. If merge conflicts prevent the merge from succeeding, the API will\nreturn a failure response.
\nBy default, commit statuses for every submitted context must be in a success\nstate. The required_contexts parameter allows you to specify a subset of contexts that must be success, or to\nspecify contexts that have not yet been submitted. You are not required to use commit statuses to deploy. If you do\nnot require any contexts or create any commit statuses, the deployment will always succeed.
\nThe payload parameter is available for any extra information that a deployment system might need. It is a JSON text\nfield that will be passed on when a deployment event is dispatched.
\nThe task parameter is used by the deployment system to allow different execution paths. In the web world this might\nbe deploy:migrations to run schema changes on the system. In the compiled world this could be a flag to compile an\napplication with debugging enabled.
\nUsers with repo or repo_deployment scopes can create a deployment for a given ref.
\nMerged branch response
\nYou will see this response when GitHub automatically merges the base branch into the topic branch instead of creating\na deployment. This auto-merge happens when:
\n\n- Auto-merge option is enabled in the repository
\n- Topic branch does not include the latest changes on the base branch, which is
master in the response example \n- There are no merge conflicts
\n
\nIf there are no new commits in the base branch, a new request to create a deployment should give a successful\nresponse.
\nMerge conflict response
\nThis error happens when the auto_merge option is enabled and when the default branch (in this case master), can't\nbe merged into the branch that's being deployed (in this case topic-branch), due to merge conflicts.
\nFailed commit status checks
\nThis error happens when the required_contexts parameter indicates that one or more contexts need to have a success\nstatus for the commit to be deployed, but one or more of the required contexts do not have a state of success.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Simple example",
- "payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
- },
- {
- "httpStatusCode": "202",
- "httpStatusMessage": "Accepted",
- "description": "Merged branch response",
- "payload": "{\n \"message\": \"Auto-merged master into topic-branch on deployment.\"\n}\n
"
- },
- {
- "httpStatusCode": "409",
- "httpStatusMessage": "Conflict",
- "description": "Conflict when there is a merge conflict or the commit's status checks failed"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -45964,6 +45939,30 @@
"rawDescription": "Specifies if the given environment is one that end-users directly interact with. Default: `true` when `environment` is `production` and `false` otherwise.",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Simple example",
+ "payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
+ },
+ {
+ "httpStatusCode": "202",
+ "httpStatusMessage": "Accepted",
+ "description": "Merged branch response
",
+ "payload": "{\n \"message\": \"Auto-merged master into topic-branch on deployment.\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "409",
+ "httpStatusMessage": "Conflict",
+ "description": "Conflict when there is a merge conflict or the commit's status checks failed
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ }
]
},
{
@@ -46038,13 +46037,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/1\",\n \"id\": 1,\n \"node_id\": \"MDEwOkRlcGxveW1lbnQx\",\n \"sha\": \"a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\",\n \"ref\": \"topic-branch\",\n \"task\": \"deploy\",\n \"payload\": {},\n \"original_environment\": \"staging\",\n \"environment\": \"production\",\n \"description\": \"Deploy request from hubot\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/example/deployments/1/statuses\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"transient_environment\": false,\n \"production_environment\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -46114,25 +46113,25 @@
"category": "deployments",
"categoryLabel": "Deployments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "To ensure there can always be an active deployment, you can only delete an inactive deployment. Anyone with repo or repo_deployment scopes can delete an inactive deployment.
\nTo set a deployment as inactive, you must:
\n\n- Create a new deployment that is active so that the system has a record of the current state, then delete the previously active deployment.
\n- Mark the active deployment as inactive by adding any non-successful deployment status.
\n
\nFor more information, see \"Create a deployment\" and \"Create a deployment status.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "To ensure there can always be an active deployment, you can only delete an inactive deployment. Anyone with repo or repo_deployment scopes can delete an inactive deployment.
\nTo set a deployment as inactive, you must:
\n\n- Create a new deployment that is active so that the system has a record of the current state, then delete the previously active deployment.
\n- Mark the active deployment as inactive by adding any non-successful deployment status.
\n
\nFor more information, see \"Create a deployment\" and \"Create a deployment status.\"
"
+ ]
},
{
"verb": "get",
@@ -46228,13 +46227,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -46497,13 +46496,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -46590,13 +46589,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/deployments/42/statuses/1\",\n \"id\": 1,\n \"node_id\": \"MDE2OkRlcGxveW1lbnRTdGF0dXMx\",\n \"state\": \"success\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"description\": \"Deployment finished successfully.\",\n \"environment\": \"production\",\n \"target_url\": \"https://example.com/deployment/42/output\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"deployment_url\": \"https://api.github.com/repos/octocat/example/deployments/42\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\",\n \"environment_url\": \"https://test-branch.lab.acme.com\",\n \"log_url\": \"https://example.com/deployment/42/output\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -46679,14 +46678,14 @@
"subcategoryLabel": "Events",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -46789,13 +46788,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"delete_branch_on_merge\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
}
]
},
@@ -46896,28 +46895,28 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"language\": null,\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"push\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"organization\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"parent\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"source\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -47044,28 +47043,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/example/git/blobs/3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"sha\": \"3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -47142,23 +47141,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content\": \"Q29udGVudCBvZiB0aGUgYmxvYg==\",\n \"encoding\": \"base64\",\n \"url\": \"https://api.github.com/repos/octocat/example/git/blobs/3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"sha\": \"3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\",\n \"size\": 19,\n \"node_id\": \"Q29udGVudCBvZiB0aGUgYmxvYg==\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -47448,18 +47447,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"my commit message\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/827efc6d56897b048c772eb4087f854f46256132\",\n \"sha\": \"827efc6d56897b048c772eb4087f854f46256132\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7d1b31e74ee336d15cbd21741bc88a537ed063a0\",\n \"sha\": \"7d1b31e74ee336d15cbd21741bc88a537ed063a0\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7d1b31e74ee336d15cbd21741bc88a537ed063a0\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n },\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -47733,13 +47732,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\",\n \"author\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"committer\": {\n \"date\": \"2014-11-07T22:01:45Z\",\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\"\n },\n \"message\": \"added readme, because im a good github citizen\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\",\n \"sha\": \"691272480426f78a0138979dd3ce63b77f706feb\"\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"sha\": \"1acc419d4d6a9ce985db7be48c6349a0475975b5\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -47838,7 +47837,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"ref\": \"refs/heads/feature-a\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlLWE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/feature-a\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n },\n {\n \"ref\": \"refs/heads/feature-b\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlLWI=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/feature-b\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac\"\n }\n }\n]\n
"
}
]
@@ -47918,13 +47917,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -48068,13 +48067,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -48212,13 +48211,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"ref\": \"refs/heads/featureA\",\n \"node_id\": \"MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\",\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"aa218f56b14c9653891f9e74264a383fa43fefbd\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\"\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -48292,19 +48291,19 @@
"subcategoryLabel": "Refs",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "post",
@@ -48519,13 +48518,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"node_id\": \"MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw==\",\n \"tag\": \"v0.0.1\",\n \"sha\": \"940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"message\": \"initial version\",\n \"tagger\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\",\n \"date\": \"2014-11-07T22:01:45Z\"\n },\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\"\n },\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -48724,13 +48723,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"node_id\": \"MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw==\",\n \"tag\": \"v0.0.1\",\n \"sha\": \"940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac\",\n \"message\": \"initial version\",\n \"tagger\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"octocat@github.com\",\n \"date\": \"2014-11-07T22:01:45Z\"\n },\n \"object\": {\n \"type\": \"commit\",\n \"sha\": \"c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\"\n },\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -48971,23 +48970,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"sha\": \"cd8274d15fa3ae2ab983129fb037999f264ba9a7\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/trees/cd8274d15fa3ae2ab983129fb037999f264ba9a7\",\n \"tree\": [\n {\n \"path\": \"file.rb\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"size\": 132,\n \"sha\": \"7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs/7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b\"\n }\n ],\n \"truncated\": true\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -49236,12 +49235,12 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -49329,13 +49328,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -49615,23 +49614,23 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -49895,13 +49894,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -50199,18 +50198,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"Repository\",\n \"id\": 12345678,\n \"name\": \"web\",\n \"active\": true,\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"config\": {\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"url\": \"https://example.com/webhook\"\n },\n \"updated_at\": \"2019-06-03T00:57:16Z\",\n \"created_at\": \"2019-06-03T00:57:16Z\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678\",\n \"test_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\",\n \"ping_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\",\n \"deliveries_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\",\n \"last_response\": {\n \"code\": null,\n \"status\": \"unused\",\n \"message\": null\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -50487,19 +50486,19 @@
"subcategoryLabel": "Repos",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -50574,7 +50573,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
}
]
@@ -50715,14 +50714,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Updates the webhook configuration for a repository. To update more information about the webhook, including the active state and events, use \"Update a repository webhook.\"
\nAccess tokens must have the write:repo_hook or repo scope, and GitHub Apps must have the repository_hooks:write permission.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "string",
@@ -50772,6 +50763,14 @@
"type": "string or number",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"content_type\": \"json\",\n \"insecure_ssl\": \"0\",\n \"secret\": \"********\",\n \"url\": \"https://example.com/webhook\"\n}\n
"
+ }
]
},
{
@@ -50867,18 +50866,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n },\n {\n \"id\": 123456789,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-04T00:57:16Z\",\n \"redelivery\": true,\n \"duration\": 0.28,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456\n }\n]\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -50964,18 +50963,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 12345678,\n \"guid\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"delivered_at\": \"2019-06-03T00:57:16Z\",\n \"redelivery\": false,\n \"duration\": 0.27,\n \"status\": \"OK\",\n \"status_code\": 200,\n \"event\": \"issues\",\n \"action\": \"opened\",\n \"installation_id\": 123,\n \"repository_id\": 456,\n \"url\": \"https://www.example.com\",\n \"request\": {\n \"headers\": {\n \"X-GitHub-Delivery\": \"0b989ba4-242f-11e5-81e1-c7b6966d2516\",\n \"X-Hub-Signature-256\": \"sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"Accept\": \"*/*\",\n \"X-GitHub-Hook-ID\": \"42\",\n \"User-Agent\": \"GitHub-Hookshot/b8c71d8\",\n \"X-GitHub-Event\": \"issues\",\n \"X-GitHub-Hook-Installation-Target-ID\": \"123\",\n \"X-GitHub-Hook-Installation-Target-Type\": \"repository\",\n \"content-type\": \"application/json\"\n },\n \"payload\": {\n \"action\": \"opened\",\n \"issue\": {\n \"body\": \"foo\"\n },\n \"repository\": {\n \"id\": 123\n }\n }\n },\n \"response\": {\n \"headers\": {\n \"Content-Type\": \"text/html;charset=utf-8\"\n },\n \"payload\": \"ok\"\n }\n}\n
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -51055,25 +51054,25 @@
"subcategory": "repo-deliveries",
"subcategoryLabel": "Repo deliveries",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Redeliver a webhook delivery for a webhook configured in a repository.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Redeliver a webhook delivery for a webhook configured in a repository.
"
+ ]
},
{
"verb": "post",
@@ -51142,20 +51141,20 @@
"subcategory": "repos",
"subcategoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger a ping event to be sent to the hook.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger a ping event to be sent to the hook.
"
+ ]
},
{
"verb": "post",
@@ -51224,20 +51223,20 @@
"subcategory": "repos",
"subcategoryLabel": "Repos",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook is not subscribed to push events, the server will respond with 204 but no test POST will be generated.
\nNote: Previously /repos/:owner/:repo/hooks/:hook_id/test
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook is not subscribed to push events, the server will respond with 204 but no test POST will be generated.
\nNote: Previously /repos/:owner/:repo/hooks/:hook_id/test
"
+ ]
},
{
"verb": "get",
@@ -51301,18 +51300,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -51400,7 +51399,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
}
]
@@ -51525,7 +51524,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"expired\": false,\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\"\n}\n
"
}
]
@@ -51599,14 +51598,14 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -51798,23 +51797,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -51855,7 +51854,7 @@
}
],
"summary": "Create an issue",
- "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/github-ae@latest/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/github-ae@latest/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/github-ae@latest/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/github-ae@latest/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/github-ae@latest/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -52001,40 +52000,7 @@
"categoryLabel": "Issues",
"contentType": "application/json",
"notes": [],
- "descriptionHTML": "Any user with pull access to a repository can create an issue. If issues are disabled in the repository, the API returns a 410 Gone status.
\nThis endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "410",
- "httpStatusMessage": "Gone",
- "description": "Gone"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- },
- {
- "httpStatusCode": "503",
- "httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
- }
- ],
+ "descriptionHTML": "Any user with pull access to a repository can create an issue. If issues are disabled in the repository, the API returns a 410 Gone status.
\nThis endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
"bodyParameters": [
{
"oneOf": [
@@ -52135,6 +52101,39 @@
"rawDescription": "Logins for Users to assign to this issue. _NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise._",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "410",
+ "httpStatusMessage": "Gone",
+ "description": "Gone
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ },
+ {
+ "httpStatusCode": "503",
+ "httpStatusMessage": "Service Unavailable",
+ "description": "Service unavailable
"
+ }
]
},
{
@@ -52261,18 +52260,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -52350,13 +52349,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -52472,13 +52471,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -52551,14 +52550,14 @@
"subcategoryLabel": "Comments",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -52672,13 +52671,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -52812,19 +52811,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -52903,15 +52902,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE delete /repositories/:repository_id/issues/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to an issue comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE delete /repositories/:repository_id/issues/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to an issue comment.
"
+ ]
},
{
"verb": "get",
@@ -52997,13 +52996,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"issue\": {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -53080,23 +53079,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"issue\": {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"performed_via_github_app\": {\n \"id\": 1,\n \"slug\": \"octoapp\",\n \"node_id\": \"MDExOkludGVncmF0aW9uMQ==\",\n \"owner\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"name\": \"Octocat App\",\n \"description\": \"\",\n \"external_url\": \"https://example.com\",\n \"html_url\": \"https://github.com/apps/octoapp\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"permissions\": {\n \"metadata\": \"read\",\n \"contents\": \"read\",\n \"issues\": \"write\",\n \"single_file\": \"write\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ]\n },\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"author_association\": \"COLLABORATOR\"\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -53172,28 +53171,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "301",
"httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
+ "description": "Moved permanently
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -53403,44 +53402,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Issue owners and users with push access can edit an issue.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
- },
- {
- "httpStatusCode": "301",
- "httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- },
- {
- "httpStatusCode": "410",
- "httpStatusMessage": "Gone",
- "description": "Gone"
- },
- {
- "httpStatusCode": "422",
- "httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
- },
- {
- "httpStatusCode": "503",
- "httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
- }
- ],
"bodyParameters": [
{
"oneOf": [
@@ -53556,6 +53517,44 @@
"rawDescription": "Logins for Users to assign to this issue. Pass one or more user logins to _replace_ the set of assignees on this Issue. Send an empty array (`[]`) to clear all assignees from the Issue. _NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise._",
"childParamsGroups": []
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
+ },
+ {
+ "httpStatusCode": "301",
+ "httpStatusMessage": "Moved Permanently",
+ "description": "Moved permanently
"
+ },
+ {
+ "httpStatusCode": "403",
+ "httpStatusMessage": "Forbidden",
+ "description": "Forbidden
"
+ },
+ {
+ "httpStatusCode": "404",
+ "httpStatusMessage": "Not Found",
+ "description": "Resource not found
"
+ },
+ {
+ "httpStatusCode": "410",
+ "httpStatusMessage": "Gone",
+ "description": "Gone
"
+ },
+ {
+ "httpStatusCode": "422",
+ "httpStatusMessage": "Unprocessable Entity",
+ "description": "Validation failed
"
+ },
+ {
+ "httpStatusCode": "503",
+ "httpStatusMessage": "Service Unavailable",
+ "description": "Service unavailable
"
+ }
]
},
{
@@ -53676,7 +53675,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
}
]
@@ -53798,7 +53797,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"closed_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"author_association\": \"COLLABORATOR\"\n}\n
"
}
]
@@ -53908,18 +53907,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -53970,7 +53969,7 @@
}
],
"summary": "Create an issue comment",
- "description": "This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/github-ae@latest/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/github-ae@latest/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "This endpoint triggers [notifications](https://docs.github.com/github-ae@latest/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/github-ae@latest/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/github-ae@latest/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -54020,7 +54019,7 @@
"subcategoryLabel": "Comments",
"contentType": "application/json",
"notes": [],
- "descriptionHTML": "This endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
+ "descriptionHTML": "This endpoint triggers notifications. Creating content too quickly using this endpoint may result in secondary rate limiting. See \"Secondary rate limits\" and \"Dealing with secondary rate limits\" for details.
",
"bodyParameters": [
{
"type": "string",
@@ -54036,28 +54035,28 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDEyOklzc3VlQ29tbWVudDE=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\",\n \"body\": \"Me too\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -54155,13 +54154,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDEwOklzc3VlRXZlbnQx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events/1\",\n \"actor\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"event\": \"closed\",\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"commit_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"performed_via_github_app\": null,\n \"label\": {\n \"name\": \"label\",\n \"color\": \"red\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -54259,13 +54258,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -54438,18 +54437,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -54622,18 +54621,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -54706,19 +54705,19 @@
"subcategoryLabel": "Labels",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -54803,18 +54802,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -54913,34 +54912,34 @@
"categoryLabel": "Issues",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Users with push access can lock an issue or pull request's conversation.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Users with push access can lock an issue or pull request's conversation.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -55025,25 +55024,25 @@
"category": "issues",
"categoryLabel": "Issues",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Users with push access can unlock an issue's conversation.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Users with push access can unlock an issue's conversation.
"
+ ]
},
{
"verb": "get",
@@ -55157,18 +55156,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
]
},
@@ -55302,19 +55301,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -55393,15 +55392,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/issues/:issue_number/reactions/:reaction_id.
\nDelete a reaction to an issue.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/issues/:issue_number/reactions/:reaction_id.
\nDelete a reaction to an issue.
"
+ ]
},
{
"verb": "get",
@@ -55492,24 +55491,24 @@
"subcategoryLabel": "Timeline",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -55595,7 +55594,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n }\n]\n
"
}
]
@@ -55740,13 +55739,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -55824,13 +55823,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/keys/1\",\n \"title\": \"octocat@octomac\",\n \"verified\": true,\n \"created_at\": \"2014-12-10T15:53:42Z\",\n \"read_only\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -55902,15 +55901,15 @@
"subcategory": "keys",
"subcategoryLabel": "Keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deploy keys are immutable. If you need to update a key, remove the key and create a new one instead.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deploy keys are immutable. If you need to update a key, remove the key and create a new one instead.
"
+ ]
},
{
"verb": "get",
@@ -55996,13 +55995,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -56146,18 +56145,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -56234,13 +56233,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -56390,7 +56389,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug%20:bug:\",\n \"name\": \"bug :bug:\",\n \"description\": \"Small bug fix required\",\n \"color\": \"b01f26\",\n \"default\": true\n}\n
"
}
]
@@ -56463,14 +56462,14 @@
"subcategoryLabel": "Labels",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -56534,7 +56533,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"C\": 78769,\n \"Python\": 7769\n}\n
"
}
]
@@ -56598,19 +56597,19 @@
"subcategoryLabel": "Lfs",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "We will return a 403 with one of the following messages:\n\n- Git LFS support not enabled because Git LFS is globally disabled.\n- Git LFS support not enabled because Git LFS is disabled for the root repository in the network.\n- Git LFS support not enabled because Git LFS is disabled for ."
+ "description": "We will return a 403 with one of the following messages:
\n\n- Git LFS support not enabled because Git LFS is globally disabled.
\n- Git LFS support not enabled because Git LFS is disabled for the root repository in the network.
\n- Git LFS support not enabled because Git LFS is disabled for .
\n
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -56671,14 +56670,14 @@
"subcategoryLabel": "Lfs",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -56742,7 +56741,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"name\": \"LICENSE\",\n \"path\": \"LICENSE\",\n \"sha\": \"401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"size\": 1077,\n \"url\": \"https://api.github.com/repos/benbalter/gman/contents/LICENSE?ref=master\",\n \"html_url\": \"https://github.com/benbalter/gman/blob/master/LICENSE\",\n \"git_url\": \"https://api.github.com/repos/benbalter/gman/git/blobs/401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"download_url\": \"https://raw.githubusercontent.com/benbalter/gman/master/LICENSE?lab=true\",\n \"type\": \"file\",\n \"content\": \"VGhlIE1JVCBMaWNlbnNlIChNSVQpCgpDb3B5cmlnaHQgKGMpIDIwMTMgQmVu\\nIEJhbHRlcgoKUGVybWlzc2lvbiBpcyBoZXJlYnkgZ3JhbnRlZCwgZnJlZSBv\\nZiBjaGFyZ2UsIHRvIGFueSBwZXJzb24gb2J0YWluaW5nIGEgY29weSBvZgp0\\naGlzIHNvZnR3YXJlIGFuZCBhc3NvY2lhdGVkIGRvY3VtZW50YXRpb24gZmls\\nZXMgKHRoZSAiU29mdHdhcmUiKSwgdG8gZGVhbCBpbgp0aGUgU29mdHdhcmUg\\nd2l0aG91dCByZXN0cmljdGlvbiwgaW5jbHVkaW5nIHdpdGhvdXQgbGltaXRh\\ndGlvbiB0aGUgcmlnaHRzIHRvCnVzZSwgY29weSwgbW9kaWZ5LCBtZXJnZSwg\\ncHVibGlzaCwgZGlzdHJpYnV0ZSwgc3VibGljZW5zZSwgYW5kL29yIHNlbGwg\\nY29waWVzIG9mCnRoZSBTb2Z0d2FyZSwgYW5kIHRvIHBlcm1pdCBwZXJzb25z\\nIHRvIHdob20gdGhlIFNvZnR3YXJlIGlzIGZ1cm5pc2hlZCB0byBkbyBzbywK\\nc3ViamVjdCB0byB0aGUgZm9sbG93aW5nIGNvbmRpdGlvbnM6CgpUaGUgYWJv\\ndmUgY29weXJpZ2h0IG5vdGljZSBhbmQgdGhpcyBwZXJtaXNzaW9uIG5vdGlj\\nZSBzaGFsbCBiZSBpbmNsdWRlZCBpbiBhbGwKY29waWVzIG9yIHN1YnN0YW50\\naWFsIHBvcnRpb25zIG9mIHRoZSBTb2Z0d2FyZS4KClRIRSBTT0ZUV0FSRSBJ\\nUyBQUk9WSURFRCAiQVMgSVMiLCBXSVRIT1VUIFdBUlJBTlRZIE9GIEFOWSBL\\nSU5ELCBFWFBSRVNTIE9SCklNUExJRUQsIElOQ0xVRElORyBCVVQgTk9UIExJ\\nTUlURUQgVE8gVEhFIFdBUlJBTlRJRVMgT0YgTUVSQ0hBTlRBQklMSVRZLCBG\\nSVRORVNTCkZPUiBBIFBBUlRJQ1VMQVIgUFVSUE9TRSBBTkQgTk9OSU5GUklO\\nR0VNRU5ULiBJTiBOTyBFVkVOVCBTSEFMTCBUSEUgQVVUSE9SUyBPUgpDT1BZ\\nUklHSFQgSE9MREVSUyBCRSBMSUFCTEUgRk9SIEFOWSBDTEFJTSwgREFNQUdF\\nUyBPUiBPVEhFUiBMSUFCSUxJVFksIFdIRVRIRVIKSU4gQU4gQUNUSU9OIE9G\\nIENPTlRSQUNULCBUT1JUIE9SIE9USEVSV0lTRSwgQVJJU0lORyBGUk9NLCBP\\nVVQgT0YgT1IgSU4KQ09OTkVDVElPTiBXSVRIIFRIRSBTT0ZUV0FSRSBPUiBU\\nSEUgVVNFIE9SIE9USEVSIERFQUxJTkdTIElOIFRIRSBTT0ZUV0FSRS4K\\n\",\n \"encoding\": \"base64\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/benbalter/gman/contents/LICENSE?ref=master\",\n \"git\": \"https://api.github.com/repos/benbalter/gman/git/blobs/401c59dcc4570b954dd6d345e76199e1f4e76266\",\n \"html\": \"https://github.com/benbalter/gman/blob/master/LICENSE\"\n },\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n }\n}\n
"
}
]
@@ -56847,18 +56846,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The branch has been successfully synced with the upstream repository",
+ "description": "The branch has been successfully synced with the upstream repository
",
"payload": "{\n \"message\": \"Successfully fetched and fast-forwarded from upstream defunkt:main\",\n \"merge_type\": \"fast-forward\",\n \"base_branch\": \"defunkt:main\"\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "The branch could not be synced because of a merge conflict"
+ "description": "The branch could not be synced because of a merge conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "The branch could not be synced for some other reason"
+ "description": "The branch could not be synced for some other reason
"
}
]
},
@@ -57001,33 +57000,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Successful Response (The resulting merge commit)",
+ "description": "Successful Response (The resulting merge commit)
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"mona@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ],\n \"stats\": {\n \"additions\": 104,\n \"deletions\": 4,\n \"total\": 108\n },\n \"files\": [\n {\n \"filename\": \"file1.txt\",\n \"additions\": 10,\n \"deletions\": 2,\n \"changes\": 12,\n \"status\": \"modified\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\",\n \"patch\": \"@@ -29,7 +29,7 @@\\n.....\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response when already merged"
+ "description": "Response when already merged
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found when the base or head does not exist"
+ "description": "Not Found when the base or head does not exist
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict when there is a merge conflict"
+ "description": "Conflict when there is a merge conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -57161,13 +57160,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -57342,18 +57341,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -57431,13 +57430,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -57619,7 +57618,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n}\n
"
}
]
@@ -57693,19 +57692,19 @@
"subcategoryLabel": "Milestones",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -57801,7 +57800,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n },\n {\n \"id\": 208045947,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDc=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/enhancement\",\n \"name\": \"enhancement\",\n \"description\": \"New feature or request\",\n \"color\": \"a2eeef\",\n \"default\": false\n }\n]\n
"
}
]
@@ -57934,7 +57933,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": \"1\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"subject\": {\n \"title\": \"Greetings\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/123\",\n \"latest_comment_url\": \"https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\",\n \"type\": \"Issue\"\n },\n \"reason\": \"subscribed\",\n \"unread\": true,\n \"updated_at\": \"2014-11-07T22:01:45Z\",\n \"last_read_at\": \"2014-11-07T22:01:45Z\",\n \"url\": \"https://api.github.com/notifications/threads/1\",\n \"subscription_url\": \"https://api.github.com/notifications/threads/1/subscription\"\n }\n]\n
"
}
]
@@ -58020,19 +58019,19 @@
"subcategoryLabel": "Notifications",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Marks all notifications in a repository as \"read\" removes them from the default view on GitHub AE. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub AE will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List repository notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"responses": [
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "205",
"httpStatusMessage": "Reset Content",
- "description": "Reset Content"
+ "description": "Reset Content
"
}
],
- "descriptionHTML": "Marks all notifications in a repository as \"read\" removes them from the default view on GitHub AE. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub AE will run an asynchronous process to mark notifications as \"read.\" To check whether any \"unread\" notifications remain, you can use the List repository notifications for the authenticated user endpoint and pass the query parameter all=false.
",
"bodyParameters": [
{
"type": "string",
@@ -58108,13 +58107,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages\",\n \"status\": \"built\",\n \"cname\": \"developer.github.com\",\n \"custom_404\": false,\n \"html_url\": \"https://developer.github.com\",\n \"source\": {\n \"branch\": \"master\",\n \"path\": \"/\"\n },\n \"public\": true,\n \"https_certificate\": {\n \"state\": \"approved\",\n \"description\": \"Certificate is approved\",\n \"domains\": [\n \"developer.github.com\"\n ],\n \"expires_at\": \"2021-05-22\"\n },\n \"https_enforced\": true\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -58278,18 +58277,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages\",\n \"status\": \"built\",\n \"cname\": \"developer.github.com\",\n \"custom_404\": false,\n \"html_url\": \"https://developer.github.com\",\n \"source\": {\n \"branch\": \"master\",\n \"path\": \"/\"\n },\n \"public\": true,\n \"https_certificate\": {\n \"state\": \"approved\",\n \"description\": \"Certificate is approved\",\n \"domains\": [\n \"developer.github.com\"\n ],\n \"expires_at\": \"2021-05-22\"\n },\n \"https_enforced\": true\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -58529,24 +58528,24 @@
"categoryLabel": "Pages",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Updates information for a GitHub AE Pages site. For more information, see \"About GitHub Pages.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Updates information for a GitHub AE Pages site. For more information, see \"About GitHub Pages.
",
"bodyParameters": [
{
"type": "string or nullable",
@@ -58682,24 +58681,24 @@
"categoryLabel": "Pages",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -58783,7 +58782,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n }\n]\n
"
}
]
@@ -58850,7 +58849,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/latest\",\n \"status\": \"queued\"\n}\n
"
}
]
@@ -58917,7 +58916,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n}\n
"
}
]
@@ -58993,7 +58992,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\",\n \"status\": \"built\",\n \"error\": {\n \"message\": null\n },\n \"pusher\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"commit\": \"351391cdcb88ffae71ec3028c91f375a8036a26b\",\n \"duration\": 2104,\n \"created_at\": \"2014-02-10T19:00:49Z\",\n \"updated_at\": \"2014-02-10T19:00:51Z\"\n}\n
"
}
]
@@ -59096,33 +59095,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -59245,33 +59244,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/repos/api-playground/projects-test\",\n \"url\": \"https://api.github.com/projects/1002604\",\n \"html_url\": \"https://github.com/api-playground/projects-test/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002604/columns\",\n \"id\": 1002604,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDQ=\",\n \"name\": \"Projects Documentation\",\n \"body\": \"Developer documentation project for the developer site.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "410",
"httpStatusMessage": "Gone",
- "description": "Gone"
+ "description": "Gone
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -59424,18 +59423,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -59652,18 +59651,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -59790,7 +59789,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n }\n]\n
"
}
]
@@ -59869,13 +59868,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -59991,7 +59990,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
}
]
@@ -60064,20 +60063,20 @@
"subcategory": "comments",
"subcategoryLabel": "Comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deletes a review comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deletes a review comment.
"
+ ]
},
{
"verb": "get",
@@ -60191,13 +60190,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -60331,19 +60330,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -60422,15 +60421,15 @@
"category": "reactions",
"categoryLabel": "Reactions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/pulls/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a pull request review comment.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: You can also specify a repository by repository_id using the route DELETE /repositories/:repository_id/pulls/comments/:comment_id/reactions/:reaction_id.
\nDelete a reaction to a pull request review comment.
"
+ ]
},
{
"verb": "get",
@@ -60503,23 +60502,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Pass the appropriate [media type](https://docs.github.com/github-ae@latest/rest/overview/media-types/#commits-commit-comparison-and-pull-requests) to fetch diff and patch formats.",
+ "description": "Pass the appropriate media type to fetch diff and patch formats.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -60712,18 +60711,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"forks\": 123,\n \"open_issues\": 123,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\"\n },\n \"watchers\": 123\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false,\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"comments\": 10,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 3,\n \"additions\": 100,\n \"deletions\": 3,\n \"changed_files\": 5\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -60860,7 +60859,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n }\n]\n
"
}
]
@@ -61162,18 +61161,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -61299,13 +61298,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 426899381,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n },\n \"start_line\": 1,\n \"original_start_line\": 1,\n \"start_side\": \"RIGHT\",\n \"line\": 2,\n \"original_line\": 2,\n \"side\": \"RIGHT\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -61400,7 +61399,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"node_id\": \"MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"author\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"committer\": {\n \"name\": \"Monalisa Octocat\",\n \"email\": \"support@github.com\",\n \"date\": \"2011-04-14T16:00:49Z\"\n },\n \"message\": \"Fix all the bugs\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n },\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n ]\n }\n]\n
"
}
]
@@ -61496,18 +61495,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"sha\": \"bbcd538c8e72b8c175046e27cc8f907076331401\",\n \"filename\": \"file1.txt\",\n \"status\": \"added\",\n \"additions\": 103,\n \"deletions\": 21,\n \"changes\": 124,\n \"blob_url\": \"https://github.com/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"raw_url\": \"https://github.com/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/file1.txt?ref=6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"patch\": \"@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "500",
"httpStatusMessage": "Internal Server Error",
- "description": "Internal Error"
+ "description": "Internal Error
"
}
]
},
@@ -61577,19 +61576,19 @@
"categoryLabel": "Pulls",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if pull request has been merged"
+ "description": "Response if pull request has been merged
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if pull request has not been merged"
+ "description": "Not Found if pull request has not been merged
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -61760,35 +61759,35 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if merge was successful",
+ "description": "if merge was successful
",
"payload": "{\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "405",
"httpStatusMessage": "Method Not Allowed",
- "description": "Method Not Allowed if merge cannot be performed",
+ "description": "Method Not Allowed if merge cannot be performed
",
"payload": "{\n \"message\": \"Pull Request is not mergeable\"\n}\n
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict if sha was provided and pull request head did not match",
+ "description": "Conflict if sha was provided and pull request head did not match
",
"payload": "{\n \"message\": \"Head branch was modified. Review and try the merge again.\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -61885,7 +61884,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"users\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ]\n}\n
"
}
]
@@ -62048,18 +62047,18 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"id\": 1,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MQ==\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\",\n \"issue_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"number\": 1347,\n \"state\": \"open\",\n \"locked\": true,\n \"title\": \"Amazing new feature\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Please pull these awesome changes in!\",\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"active_lock_reason\": \"too heated\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:01:12Z\",\n \"closed_at\": \"2011-01-26T19:01:12Z\",\n \"merged_at\": \"2011-01-26T19:01:12Z\",\n \"merge_commit_sha\": \"e5bd3914e2e596debea16f433f57875b5b90bcd6\",\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n }\n ],\n \"requested_reviewers\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n {\n \"login\": \"hubot\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/hubot\",\n \"html_url\": \"https://github.com/hubot\",\n \"followers_url\": \"https://api.github.com/users/hubot/followers\",\n \"following_url\": \"https://api.github.com/users/hubot/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/hubot/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/hubot/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/hubot/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/hubot/orgs\",\n \"repos_url\": \"https://api.github.com/users/hubot/repos\",\n \"events_url\": \"https://api.github.com/users/hubot/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/hubot/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n {\n \"login\": \"other_user\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/other_user_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/other_user\",\n \"html_url\": \"https://github.com/other_user\",\n \"followers_url\": \"https://api.github.com/users/other_user/followers\",\n \"following_url\": \"https://api.github.com/users/other_user/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/other_user/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/other_user/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/other_user/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/other_user/orgs\",\n \"repos_url\": \"https://api.github.com/users/other_user/repos\",\n \"events_url\": \"https://api.github.com/users/other_user/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/other_user/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"requested_teams\": [\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n ],\n \"head\": {\n \"label\": \"octocat:new-topic\",\n \"ref\": \"new-topic\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"base\": {\n \"label\": \"octocat:master\",\n \"ref\": \"master\",\n \"sha\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1347\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\"\n }\n },\n \"author_association\": \"OWNER\",\n \"auto_merge\": null,\n \"draft\": false\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if user is not a collaborator"
+ "description": "Unprocessable Entity if user is not a collaborator
"
}
]
},
@@ -62185,12 +62184,12 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -62313,7 +62312,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The list of reviews returns in chronological order.",
+ "description": "The list of reviews returns in chronological order.
",
"payload": "[\n {\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
}
]
@@ -62600,18 +62599,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
"bodyParameters": [
@@ -62884,13 +62883,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -63015,13 +63014,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change. And add more about this.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -63108,18 +63107,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"This is close to perfect! Please address the suggested inline change.\",\n \"state\": \"CHANGES_REQUESTED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -63226,13 +63225,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\",\n \"pull_request_review_id\": 42,\n \"id\": 10,\n \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\",\n \"diff_hunk\": \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\",\n \"path\": \"file1.txt\",\n \"position\": 1,\n \"original_position\": 4,\n \"commit_id\": \"6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"original_commit_id\": \"9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\",\n \"in_reply_to_id\": 8,\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Great stuff!\",\n \"created_at\": \"2011-04-14T16:00:49Z\",\n \"updated_at\": \"2011-04-14T16:00:49Z\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\",\n \"author_association\": \"NONE\",\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1\"\n }\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -63372,18 +63371,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"DISMISSED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -63533,23 +63532,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 80,\n \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Here is the body for the review.\",\n \"state\": \"APPROVED\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\",\n \"pull_request_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\",\n \"_links\": {\n \"html\": {\n \"href\": \"https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\"\n },\n \"pull_request\": {\n \"href\": \"https://api.github.com/repos/octocat/Hello-World/pulls/12\"\n }\n },\n \"submitted_at\": \"2019-11-17T17:43:43Z\",\n \"commit_id\": \"ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\",\n \"author_association\": \"COLLABORATOR\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -63660,18 +63659,18 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"message\": \"Updating pull request branch.\",\n \"url\": \"https://github.com/repos/octocat/Hello-World/pulls/53\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -63749,18 +63748,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"file\",\n \"encoding\": \"base64\",\n \"size\": 5362,\n \"name\": \"README.md\",\n \"path\": \"README.md\",\n \"content\": \"encoded content ...\",\n \"sha\": \"3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"git_url\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"html_url\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\",\n \"download_url\": \"https://raw.githubusercontent.com/octokit/octokit.rb/master/README.md\",\n \"_links\": {\n \"git\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"self\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"html\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -63849,18 +63848,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"type\": \"file\",\n \"encoding\": \"base64\",\n \"size\": 5362,\n \"name\": \"README.md\",\n \"path\": \"README.md\",\n \"content\": \"encoded content ...\",\n \"sha\": \"3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"url\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"git_url\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"html_url\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\",\n \"download_url\": \"https://raw.githubusercontent.com/octokit/octokit.rb/master/README.md\",\n \"_links\": {\n \"git\": \"https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\",\n \"self\": \"https://api.github.com/repos/octokit/octokit.rb/contents/README.md\",\n \"html\": \"https://github.com/octokit/octokit.rb/blob/master/README.md\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -63946,13 +63945,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -64156,13 +64155,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -64240,23 +64239,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "To download the asset's binary content, set the `Accept` header of the request to [`application/octet-stream`](https://docs.github.com/github-ae@latest/rest/overview/media-types). The API will either redirect the client to the location, or stream it directly if possible. API clients should handle both a `200` or `302` response.",
+ "description": "To download the asset's binary content, set the Accept header of the request to application/octet-stream. The API will either redirect the client to the location, or stream it directly if possible. API clients should handle both a 200 or 302 response.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Found"
+ "description": "Found
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -64406,7 +64405,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -64480,14 +64479,14 @@
"subcategoryLabel": "Assets",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -64551,7 +64550,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
}
]
@@ -64629,13 +64628,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -64711,13 +64710,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "**Note:** This returns an `upload_url` key corresponding to the endpoint for uploading release assets. This key is a [hypermedia resource](https://docs.github.com/github-ae@latest/rest/overview/resources-in-the-rest-api#hypermedia).",
+ "description": "Note: This returns an upload_url key corresponding to the endpoint for uploading release assets. This key is a hypermedia resource.
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -64923,7 +64922,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n \"assets_url\": \"https://api.github.com/repos/octocat/Hello-World/releases/1/assets\",\n \"upload_url\": \"https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\",\n \"tarball_url\": \"https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\",\n \"zipball_url\": \"https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\",\n \"discussion_url\": \"https://github.com/octocat/Hello-World/discussions/90\",\n \"id\": 1,\n \"node_id\": \"MDc6UmVsZWFzZTE=\",\n \"tag_name\": \"v1.0.0\",\n \"target_commitish\": \"master\",\n \"name\": \"v1.0.0\",\n \"body\": \"Description of the release\",\n \"draft\": false,\n \"prerelease\": false,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"published_at\": \"2013-02-27T19:35:32Z\",\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assets\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n ]\n}\n
"
}
]
@@ -64994,15 +64993,15 @@
"category": "releases",
"categoryLabel": "Releases",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Users with push access to the repository can delete a release.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Users with push access to the repository can delete a release.
"
+ ]
},
{
"verb": "get",
@@ -65098,7 +65097,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
}
]
@@ -65217,13 +65216,13 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response for successful upload",
+ "description": "Response for successful upload
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/releases/assets/1\",\n \"browser_download_url\": \"https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\",\n \"id\": 1,\n \"node_id\": \"MDEyOlJlbGVhc2VBc3NldDE=\",\n \"name\": \"example.zip\",\n \"label\": \"short description\",\n \"state\": \"uploaded\",\n \"content_type\": \"application/zip\",\n \"size\": 1024,\n \"download_count\": 42,\n \"created_at\": \"2013-02-27T19:35:32Z\",\n \"updated_at\": \"2013-02-27T19:35:32Z\",\n \"uploader\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Response if you upload an asset with the same filename as another uploaded asset"
+ "description": "Response if you upload an asset with the same filename as another uploaded asset
"
}
]
},
@@ -65353,19 +65352,19 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Reaction exists",
+ "description": "Reaction exists
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Reaction created",
+ "description": "Reaction created
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -65485,18 +65484,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"number\": 2,\n \"created_at\": \"2020-11-06T18:48:51Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/2\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2/locations\",\n \"state\": \"resolved\",\n \"resolution\": \"false_positive\",\n \"resolved_at\": \"2020-11-07T02:47:13Z\",\n \"resolved_by\": {\n \"login\": \"monalisa\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjI=\",\n \"avatar_url\": \"https://alambic.github.com/avatars/u/2?\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/monalisa\",\n \"followers_url\": \"https://api.github.com/users/monalisa/followers\",\n \"following_url\": \"https://api.github.com/users/monalisa/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/monalisa/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/monalisa/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/monalisa/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/monalisa/orgs\",\n \"repos_url\": \"https://api.github.com/users/monalisa/repos\",\n \"events_url\": \"https://api.github.com/users/monalisa/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/monalisa/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"secret_type\": \"adafruit_io_key\",\n \"secret\": \"aio_XXXXXXXXXXXXXXXXXXXXXXXXXXXX\"\n },\n {\n \"number\": 1,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/repo/secret-scanning/alerts/1\",\n \"html_url\": \"https://github.com/owner/repo/security/secret-scanning/1\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/1/locations\",\n \"state\": \"open\",\n \"resolution\": null,\n \"resolved_at\": null,\n \"resolved_by\": null,\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\"\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public or secret scanning is disabled for the repository"
+ "description": "Repository is public or secret scanning is disabled for the repository
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -65574,23 +65573,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/42\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42/locations\",\n \"state\": \"open\",\n \"resolution\": null,\n \"resolved_at\": null,\n \"resolved_by\": null,\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found"
+ "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -65748,23 +65747,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"number\": 42,\n \"created_at\": \"2020-11-06T18:18:30Z\",\n \"url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42\",\n \"html_url\": \"https://github.com/owner/private-repo/security/secret-scanning/42\",\n \"locations_url\": \"https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42/locations\",\n \"state\": \"resolved\",\n \"resolution\": \"used_in_tests\",\n \"resolved_at\": \"2020-11-16T22:42:07Z\",\n \"resolved_by\": {\n \"login\": \"monalisa\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjI=\",\n \"avatar_url\": \"https://alambic.github.com/avatars/u/2?\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/monalisa\",\n \"html_url\": \"https://github.com/monalisa\",\n \"followers_url\": \"https://api.github.com/users/monalisa/followers\",\n \"following_url\": \"https://api.github.com/users/monalisa/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/monalisa/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/monalisa/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/monalisa/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/monalisa/orgs\",\n \"repos_url\": \"https://api.github.com/users/monalisa/repos\",\n \"events_url\": \"https://api.github.com/users/monalisa/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/monalisa/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"secret_type\": \"mailchimp_api_key\",\n \"secret\": \"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found"
+ "description": "Repository is public, or secret scanning is disabled for the repository, or the resource is not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "State does not match the resolution"
+ "description": "State does not match the resolution
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -65864,7 +65863,7 @@
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -65932,18 +65931,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Returns a weekly aggregate of the number of additions and deletions pushed to a repository.",
+ "description": "Returns a weekly aggregate of the number of additions and deletions pushed to a repository.
",
"payload": "[\n [\n 1302998400,\n 1124,\n -435\n ]\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -66011,18 +66010,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"days\": [\n 0,\n 3,\n 26,\n 20,\n 39,\n 1,\n 0\n ],\n \"total\": 89,\n \"week\": 1336280400\n }\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -66090,18 +66089,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "* `w` - Start of the week, given as a [Unix timestamp](http://en.wikipedia.org/wiki/Unix_time).\n* `a` - Number of additions\n* `d` - Number of deletions\n* `c` - Number of commits",
+ "description": "\nw - Start of the week, given as a Unix timestamp. \na - Number of additions \nd - Number of deletions \nc - Number of commits \n
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"total\": 135,\n \"weeks\": [\n {\n \"w\": 1367712000,\n \"a\": 6898,\n \"d\": 77,\n \"c\": 10\n }\n ]\n }\n]\n
"
},
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Accepted"
+ "description": "Accepted
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -66169,13 +66168,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The array order is oldest week (index 0) to most recent week.",
+ "description": "The array order is oldest week (index 0) to most recent week.
",
"payload": "{\n \"all\": [\n 11,\n 21,\n 15,\n 2,\n 8,\n 1,\n 8,\n 23,\n 17,\n 21,\n 11,\n 10,\n 33,\n 91,\n 38,\n 34,\n 22,\n 23,\n 32,\n 3,\n 43,\n 87,\n 71,\n 18,\n 13,\n 5,\n 13,\n 16,\n 66,\n 27,\n 12,\n 45,\n 110,\n 117,\n 13,\n 8,\n 18,\n 9,\n 19,\n 26,\n 39,\n 12,\n 20,\n 31,\n 46,\n 91,\n 45,\n 10,\n 24,\n 9,\n 29,\n 7\n ],\n \"owner\": [\n 3,\n 2,\n 3,\n 0,\n 2,\n 0,\n 5,\n 14,\n 7,\n 9,\n 1,\n 5,\n 0,\n 48,\n 19,\n 2,\n 0,\n 1,\n 10,\n 2,\n 23,\n 40,\n 35,\n 8,\n 8,\n 2,\n 10,\n 6,\n 30,\n 0,\n 2,\n 9,\n 53,\n 104,\n 3,\n 3,\n 10,\n 4,\n 7,\n 11,\n 21,\n 4,\n 4,\n 22,\n 26,\n 63,\n 11,\n 2,\n 14,\n 1,\n 10,\n 3\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -66243,13 +66242,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "For example, `[2, 14, 25]` indicates that there were 25 total commits, during the 2:00pm hour on Tuesdays. All times are based on the time zone of individual commits.",
+ "description": "For example, [2, 14, 25] indicates that there were 25 total commits, during the 2:00pm hour on Tuesdays. All times are based on the time zone of individual commits.
",
"payload": "[\n [\n 0,\n 0,\n 5\n ],\n [\n 0,\n 1,\n 43\n ],\n [\n 0,\n 2,\n 21\n ]\n]\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "A header with no content is returned."
+ "description": "A header with no content is returned.
"
}
]
},
@@ -66436,7 +66435,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"id\": 1,\n \"node_id\": \"MDY6U3RhdHVzMQ==\",\n \"state\": \"success\",\n \"description\": \"Build has completed successfully\",\n \"target_url\": \"https://ci.example.com/1000/output\",\n \"context\": \"continuous-integration/jenkins\",\n \"created_at\": \"2012-07-20T01:19:13Z\",\n \"updated_at\": \"2012-07-20T01:19:13Z\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
}
]
@@ -66525,7 +66524,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -66594,18 +66593,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if you subscribe to the repository",
+ "description": "if you subscribe to the repository
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/repos/octocat/example/subscription\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\"\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if you don't subscribe to the repository"
+ "description": "Not Found if you don't subscribe to the repository
"
}
]
},
@@ -66723,7 +66722,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"subscribed\": true,\n \"ignored\": false,\n \"reason\": null,\n \"created_at\": \"2012-10-06T21:34:12Z\",\n \"url\": \"https://api.github.com/repos/octocat/example/subscription\",\n \"repository_url\": \"https://api.github.com/repos/octocat/example\"\n}\n
"
}
]
@@ -66786,15 +66785,15 @@
"subcategory": "watching",
"subcategoryLabel": "Watching",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This endpoint should only be used to stop watching a repository. To control whether or not you wish to receive notifications from a repository, set the repository's subscription manually.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This endpoint should only be used to stop watching a repository. To control whether or not you wish to receive notifications from a repository, set the repository's subscription manually.
"
+ ]
},
{
"verb": "get",
@@ -66878,7 +66877,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"name\": \"v0.1\",\n \"commit\": {\n \"sha\": \"c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\"\n },\n \"zipball_url\": \"https://github.com/octocat/Hello-World/zipball/v0.1\",\n \"tarball_url\": \"https://github.com/octocat/Hello-World/tarball/v0.1\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
}
]
@@ -66950,15 +66949,15 @@
"subcategory": "contents",
"subcategoryLabel": "Contents",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a tar archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a tar archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
"
+ ]
},
{
"verb": "get",
@@ -67042,7 +67041,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null\n }\n]\n
"
}
]
@@ -67129,13 +67128,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"names\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -67250,18 +67249,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"names\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -67393,7 +67392,7 @@
{
"httpStatusCode": "202",
"httpStatusMessage": "Accepted",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_forking\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n }\n}\n
"
}
]
@@ -67465,15 +67464,15 @@
"subcategory": "contents",
"subcategoryLabel": "Contents",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Gets a redirect URL to download a zip archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
",
"responses": [
{
"httpStatusCode": "302",
"httpStatusMessage": "Found",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Gets a redirect URL to download a zip archive for a repository. If you omit :ref, the repository’s default branch (usually\nmaster) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\nthe Location header to make a second GET request.\nNote: For private repositories, these links are temporary and expire after five minutes.
"
+ ]
},
{
"verb": "post",
@@ -67655,7 +67654,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"forks\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"open_issues\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"allow_auto_merge\": false,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n }\n}\n
"
}
]
@@ -67756,7 +67755,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:api:messages:2.0:ListResponse\"\n ],\n \"totalResults\": 2,\n \"itemsPerPage\": 2,\n \"startIndex\": 1,\n \"Resources\": [\n {\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:Group\"\n ],\n \"id\": \"abcd27f8-a9aa-11ea-8221-f59b2be9cccc\",\n \"externalId\": null,\n \"displayName\": \"octo-org\",\n \"members\": [\n {\n \"value\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"display\": \"octocat@github.com\"\n },\n {\n \"value\": \"aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"display\": \"hubot@example.com\"\n }\n ],\n \"meta\": {\n \"resourceType\": \"Group\",\n \"created\": \"2020-06-09T03:10:17.000+10:00\",\n \"lastModified\": \"2020-06-09T03:10:17.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Groups/abcd27f8-a9aa-11ea-8221-f59b2be9cccc\"\n }\n },\n {\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:Group\"\n ],\n \"id\": \"5e75bbbb-aa1a-11ea-8644-75ff655cdddd\",\n \"externalId\": null,\n \"displayName\": \"octo-docs-org\",\n \"members\": [\n {\n \"value\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"display\": \"octocat@github.com\"\n }\n ],\n \"meta\": {\n \"resourceType\": \"Group\",\n \"created\": \"2020-06-09T16:28:01.000+10:00\",\n \"lastModified\": \"2020-06-09T16:28:01.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Groups/5e75bbbb-aa1a-11ea-8644-75ff655cdddd\"\n }\n }\n ]\n}\n
"
}
]
@@ -67906,14 +67905,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Note: The SCIM API endpoints for enterprise accounts are currently in beta and are subject to change.
\nProvision an enterprise group, and invite users to the group. This sends invitation emails to the email address of the invited users to join the GitHub organization that the SCIM group corresponds to.
",
- "responses": [
- {
- "httpStatusCode": "201",
- "httpStatusMessage": "Created",
- "description": "Response",
- "payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:Group\"\n ],\n \"id\": \"abcd27f8-a9aa-11ea-8221-f59b2be9cccc\",\n \"externalId\": null,\n \"displayName\": \"octo-org\",\n \"members\": [\n {\n \"value\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"display\": \"octocat@github.com\"\n },\n {\n \"value\": \"aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"display\": \"hubot@example.com\"\n }\n ],\n \"meta\": {\n \"resourceType\": \"Group\",\n \"created\": \"2020-06-09T03:10:17.000+10:0\",\n \"lastModified\": \"2020-06-09T03:10:17.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Groups/abcd27f8-a9aa-11ea-8221-f59b2be9cccc\"\n }\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "array of strings",
@@ -67978,6 +67969,14 @@
}
]
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "201",
+ "httpStatusMessage": "Created",
+ "description": "Response
",
+ "payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:Group\"\n ],\n \"id\": \"abcd27f8-a9aa-11ea-8221-f59b2be9cccc\",\n \"externalId\": null,\n \"displayName\": \"octo-org\",\n \"members\": [\n {\n \"value\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"display\": \"octocat@github.com\"\n },\n {\n \"value\": \"aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"display\": \"hubot@example.com\"\n }\n ],\n \"meta\": {\n \"resourceType\": \"Group\",\n \"created\": \"2020-06-09T03:10:17.000+10:0\",\n \"lastModified\": \"2020-06-09T03:10:17.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Groups/abcd27f8-a9aa-11ea-8221-f59b2be9cccc\"\n }\n}\n
"
+ }
]
},
{
@@ -68056,7 +68055,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:Group\"\n ],\n \"id\": \"abcd27f8-a9aa-11ea-8221-f59b2be9cccc\",\n \"externalId\": null,\n \"displayName\": \"octo-org\",\n \"members\": [\n {\n \"value\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"display\": \"octocat@github.com\"\n },\n {\n \"value\": \"aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"display\": \"hubot@example.com\"\n }\n ],\n \"meta\": {\n \"resourceType\": \"Group\",\n \"created\": \"2020-06-09T03:10:17.000+10:0\",\n \"lastModified\": \"2020-06-09T03:10:17.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Groups/abcd27f8-a9aa-11ea-8221-f59b2be9cccc\"\n }\n}\n
"
}
]
@@ -68216,14 +68215,6 @@
"contentType": "application/json",
"notes": [],
"descriptionHTML": "Note: The SCIM API endpoints for enterprise accounts are currently in beta and are subject to change.
\nReplaces an existing provisioned group’s information. You must provide all the information required for the group as if you were provisioning it for the first time. Any existing group information that you don't provide will be removed, including group membership. If you want to only update a specific attribute, use the Update an attribute for a SCIM enterprise group endpoint instead.
",
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response",
- "payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:Group\"\n ],\n \"id\": \"abcd27f8-a9aa-11ea-8221-f59b2be9cccc\",\n \"externalId\": null,\n \"displayName\": \"octo-org\",\n \"members\": [\n {\n \"value\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"display\": \"octocat@github.com\"\n },\n {\n \"value\": \"aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"display\": \"hubot@example.com\"\n }\n ],\n \"meta\": {\n \"resourceType\": \"Group\",\n \"created\": \"2020-06-09T03:10:17.000+10:0\",\n \"lastModified\": \"2020-06-09T03:10:17.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Groups/abcd27f8-a9aa-11ea-8221-f59b2be9cccc\"\n }\n}\n
"
- }
- ],
"bodyParameters": [
{
"type": "array of strings",
@@ -68288,6 +68279,14 @@
}
]
}
+ ],
+ "responses": [
+ {
+ "httpStatusCode": "200",
+ "httpStatusMessage": "OK",
+ "description": "Response
",
+ "payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:Group\"\n ],\n \"id\": \"abcd27f8-a9aa-11ea-8221-f59b2be9cccc\",\n \"externalId\": null,\n \"displayName\": \"octo-org\",\n \"members\": [\n {\n \"value\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"display\": \"octocat@github.com\"\n },\n {\n \"value\": \"aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/aaaa8c34-a6b2-11ea-9d70-bbbbbd1c8fd5\",\n \"display\": \"hubot@example.com\"\n }\n ],\n \"meta\": {\n \"resourceType\": \"Group\",\n \"created\": \"2020-06-09T03:10:17.000+10:0\",\n \"lastModified\": \"2020-06-09T03:10:17.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Groups/abcd27f8-a9aa-11ea-8221-f59b2be9cccc\"\n }\n}\n
"
+ }
]
},
{
@@ -68490,7 +68489,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"schemas\": [\n \"urn:ietf:params:scim:schemas:core:2.0:Group\"\n ],\n \"id\": \"abcd27f8-a9aa-11ea-8221-f59b2be9cccc\",\n \"externalId\": null,\n \"displayName\": \"octo-org\",\n \"members\": [\n {\n \"value\": \"92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"$ref\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Users/92b58aaa-a1d6-11ea-8227-b9ce9e023ccc\",\n \"display\": \"octocat@github.com\"\n }\n ],\n \"meta\": {\n \"resourceType\": \"Group\",\n \"created\": \"2020-06-09T03:10:17.000+10:00\",\n \"lastModified\": \"2020-06-09T03:10:17.000+10:00\",\n \"location\": \"https://api.github.com/scim/v2/enterprises/octo-corp/Groups/abcd27f8-a9aa-11ea-8221-f59b2be9cccc\"\n }\n}\n
"
}
],
@@ -68659,15 +68658,15 @@
"subcategory": "scim",
"subcategoryLabel": "Scim",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note: The SCIM API endpoints for enterprise accounts are currently in beta and are subject to change.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note: The SCIM API endpoints for enterprise accounts are currently in beta and are subject to change.
"
+ ]
},
{
"verb": "get",
@@ -68771,28 +68770,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 7,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"name\": \"classes.js\",\n \"path\": \"src/attributes/classes.js\",\n \"sha\": \"d7212f9dee2dcc18f084d7df8f417b80846ded5a\",\n \"url\": \"https://api.github.com/repositories/167174/contents/src/attributes/classes.js?ref=825ac3773694e0cd23ee74895fd5aeb535b27da4\",\n \"git_url\": \"https://api.github.com/repositories/167174/git/blobs/d7212f9dee2dcc18f084d7df8f417b80846ded5a\",\n \"html_url\": \"https://github.com/jquery/jquery/blob/825ac3773694e0cd23ee74895fd5aeb535b27da4/src/attributes/classes.js\",\n \"repository\": {\n \"id\": 167174,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxNjcxNzQ=\",\n \"name\": \"jquery\",\n \"full_name\": \"jquery/jquery\",\n \"owner\": {\n \"login\": \"jquery\",\n \"id\": 70142,\n \"node_id\": \"MDQ6VXNlcjcwMTQy\",\n \"avatar_url\": \"https://0.gravatar.com/avatar/6906f317a4733f4379b06c32229ef02f?d=https%3A%2F%2Fidenticons.github.com%2Ff426f04f2f9813718fb806b30e0093de.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/jquery\",\n \"html_url\": \"https://github.com/jquery\",\n \"followers_url\": \"https://api.github.com/users/jquery/followers\",\n \"following_url\": \"https://api.github.com/users/jquery/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/jquery/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/jquery/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/jquery/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/jquery/orgs\",\n \"repos_url\": \"https://api.github.com/users/jquery/repos\",\n \"events_url\": \"https://api.github.com/users/jquery/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/jquery/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/jquery/jquery\",\n \"description\": \"jQuery JavaScript Library\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/jquery/jquery\",\n \"forks_url\": \"https://api.github.com/repos/jquery/jquery/forks\",\n \"keys_url\": \"https://api.github.com/repos/jquery/jquery/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/jquery/jquery/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/jquery/jquery/teams\",\n \"hooks_url\": \"https://api.github.com/repos/jquery/jquery/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/jquery/jquery/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/jquery/jquery/events\",\n \"assignees_url\": \"https://api.github.com/repos/jquery/jquery/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/jquery/jquery/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/jquery/jquery/tags\",\n \"blobs_url\": \"https://api.github.com/repos/jquery/jquery/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/jquery/jquery/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/jquery/jquery/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/jquery/jquery/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/jquery/jquery/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/jquery/jquery/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/jquery/jquery/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/jquery/jquery/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/jquery/jquery/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/jquery/jquery/subscription\",\n \"commits_url\": \"https://api.github.com/repos/jquery/jquery/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/jquery/jquery/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/jquery/jquery/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/jquery/jquery/issues/comments/{number}\",\n \"contents_url\": \"https://api.github.com/repos/jquery/jquery/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/jquery/jquery/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/jquery/jquery/merges\",\n \"archive_url\": \"https://api.github.com/repos/jquery/jquery/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/jquery/jquery/downloads\",\n \"issues_url\": \"https://api.github.com/repos/jquery/jquery/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/jquery/jquery/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/jquery/jquery/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/jquery/jquery/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/jquery/jquery/labels{/name}\",\n \"deployments_url\": \"http://api.github.com/repos/octocat/Hello-World/deployments\",\n \"releases_url\": \"http://api.github.com/repos/octocat/Hello-World/releases{/id}\"\n },\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -68899,13 +68898,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 1,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"sha\": \"bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"html_url\": \"https://github.com/octocat/Spoon-Knife/commit/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f/comments\",\n \"commit\": {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\",\n \"author\": {\n \"date\": \"2014-02-04T14:38:36-08:00\",\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"committer\": {\n \"date\": \"2014-02-12T15:18:55-08:00\",\n \"name\": \"The Octocat\",\n \"email\": \"octocat@nowhere.com\"\n },\n \"message\": \"Create styles.css and updated README\",\n \"tree\": {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/trees/a639e96f9038797fba6e0469f94a4b0cc459fa68\",\n \"sha\": \"a639e96f9038797fba6e0469f94a4b0cc459fa68\"\n },\n \"comment_count\": 8\n },\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 583231,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/583231?v=3\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {},\n \"parents\": [\n {\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits/a30c19e3f13765a3b48829788bc1cb8b4e95cee4\",\n \"html_url\": \"https://github.com/octocat/Spoon-Knife/commit/a30c19e3f13765a3b48829788bc1cb8b4e95cee4\",\n \"sha\": \"a30c19e3f13765a3b48829788bc1cb8b4e95cee4\"\n }\n ],\n \"repository\": {\n \"id\": 1300192,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMzAwMTky\",\n \"name\": \"Spoon-Knife\",\n \"full_name\": \"octocat/Spoon-Knife\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 583231,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\",\n \"avatar_url\": \"https://avatars.githubusercontent.com/u/583231?v=3\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Spoon-Knife\",\n \"description\": \"This repo is for demonstration purposes only.\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Spoon-Knife\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/forks\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/teams\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/events\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/tags\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/subscription\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/merges\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/downloads\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Spoon-Knife/deployments\"\n },\n \"score\": 1,\n \"node_id\": \"MDQ6VXNlcjU4MzIzMQ==\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -69021,28 +69020,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 280,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132\",\n \"repository_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit\",\n \"labels_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/comments\",\n \"events_url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/events\",\n \"html_url\": \"https://github.com/batterseapower/pinyin-toolkit/issues/132\",\n \"id\": 35802,\n \"node_id\": \"MDU6SXNzdWUzNTgwMg==\",\n \"number\": 132,\n \"title\": \"Line Number Indexes Beyond 20 Not Displayed\",\n \"user\": {\n \"login\": \"Nick3C\",\n \"id\": 90254,\n \"node_id\": \"MDQ6VXNlcjkwMjU0\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/934442aadfe3b2f4630510de416c5718?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/Nick3C\",\n \"html_url\": \"https://github.com/Nick3C\",\n \"followers_url\": \"https://api.github.com/users/Nick3C/followers\",\n \"following_url\": \"https://api.github.com/users/Nick3C/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/Nick3C/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/Nick3C/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/Nick3C/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/Nick3C/orgs\",\n \"repos_url\": \"https://api.github.com/users/Nick3C/repos\",\n \"events_url\": \"https://api.github.com/users/Nick3C/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/Nick3C/received_events\",\n \"type\": \"User\",\n \"site_admin\": true\n },\n \"labels\": [\n {\n \"id\": 4,\n \"node_id\": \"MDU6TGFiZWw0\",\n \"url\": \"https://api.github.com/repos/batterseapower/pinyin-toolkit/labels/bug\",\n \"name\": \"bug\",\n \"color\": \"ff0000\"\n }\n ],\n \"state\": \"open\",\n \"assignee\": null,\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"comments\": 15,\n \"created_at\": \"2009-07-12T20:10:41Z\",\n \"updated_at\": \"2009-07-19T09:23:43Z\",\n \"closed_at\": null,\n \"pull_request\": {\n \"url\": \"https://api/github.com/repos/octocat/Hello-World/pull/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\"\n },\n \"body\": \"...\",\n \"score\": 1,\n \"locked\": true,\n \"author_association\": \"COLLABORATOR\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -69159,28 +69158,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 2,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"id\": 418327088,\n \"node_id\": \"MDU6TGFiZWw0MTgzMjcwODg=\",\n \"url\": \"https://api.github.com/repos/octocat/linguist/labels/enhancement\",\n \"name\": \"enhancement\",\n \"color\": \"84b6eb\",\n \"default\": true,\n \"description\": \"New feature or request.\",\n \"score\": 1\n },\n {\n \"id\": 418327086,\n \"node_id\": \"MDU6TGFiZWw0MTgzMjcwODY=\",\n \"url\": \"https://api.github.com/repos/octocat/linguist/labels/bug\",\n \"name\": \"bug\",\n \"color\": \"ee0701\",\n \"default\": true,\n \"description\": \"Something isn't working.\",\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69289,23 +69288,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 40,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"id\": 3081286,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkzMDgxMjg2\",\n \"name\": \"Tetris\",\n \"full_name\": \"dtrupenn/Tetris\",\n \"owner\": {\n \"login\": \"dtrupenn\",\n \"id\": 872147,\n \"node_id\": \"MDQ6VXNlcjg3MjE0Nw==\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/e7956084e75f239de85d3a31bc172ace?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/dtrupenn\",\n \"received_events_url\": \"https://api.github.com/users/dtrupenn/received_events\",\n \"type\": \"User\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"site_admin\": true\n },\n \"private\": false,\n \"html_url\": \"https://github.com/dtrupenn/Tetris\",\n \"description\": \"A C implementation of Tetris using Pennsim through LC4\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/dtrupenn/Tetris\",\n \"created_at\": \"2012-01-01T00:31:50Z\",\n \"updated_at\": \"2013-01-05T17:58:47Z\",\n \"pushed_at\": \"2012-01-01T00:37:02Z\",\n \"homepage\": \"https://github.com\",\n \"size\": 524,\n \"stargazers_count\": 1,\n \"watchers_count\": 1,\n \"language\": \"Assembly\",\n \"forks_count\": 0,\n \"open_issues_count\": 0,\n \"master_branch\": \"master\",\n \"default_branch\": \"master\",\n \"score\": 1,\n \"archive_url\": \"https://api.github.com/repos/dtrupenn/Tetris/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/dtrupenn/Tetris/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/dtrupenn/Tetris/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/dtrupenn/Tetris/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/dtrupenn/Tetris/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/dtrupenn/Tetris/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/dtrupenn/Tetris/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/dtrupenn/Tetris/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/dtrupenn/Tetris/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/dtrupenn/Tetris/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/dtrupenn/Tetris/downloads\",\n \"events_url\": \"https://api.github.com/repos/dtrupenn/Tetris/events\",\n \"forks_url\": \"https://api.github.com/repos/dtrupenn/Tetris/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/tags{/sha}\",\n \"git_url\": \"git:github.com/dtrupenn/Tetris.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/dtrupenn/Tetris/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/dtrupenn/Tetris/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/dtrupenn/Tetris/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/dtrupenn/Tetris/languages\",\n \"merges_url\": \"https://api.github.com/repos/dtrupenn/Tetris/merges\",\n \"milestones_url\": \"https://api.github.com/repos/dtrupenn/Tetris/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/dtrupenn/Tetris/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/dtrupenn/Tetris/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/dtrupenn/Tetris/releases{/id}\",\n \"ssh_url\": \"git@github.com:dtrupenn/Tetris.git\",\n \"stargazers_url\": \"https://api.github.com/repos/dtrupenn/Tetris/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/dtrupenn/Tetris/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/dtrupenn/Tetris/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/dtrupenn/Tetris/subscription\",\n \"tags_url\": \"https://api.github.com/repos/dtrupenn/Tetris/tags\",\n \"teams_url\": \"https://api.github.com/repos/dtrupenn/Tetris/teams\",\n \"trees_url\": \"https://api.github.com/repos/dtrupenn/Tetris/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/dtrupenn/Tetris.git\",\n \"mirror_url\": \"git:git.example.com/dtrupenn/Tetris\",\n \"hooks_url\": \"https://api.github.com/repos/dtrupenn/Tetris/hooks\",\n \"svn_url\": \"https://svn.github.com/dtrupenn/Tetris\",\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1,\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_pages\": true,\n \"has_wiki\": true,\n \"has_downloads\": true,\n \"archived\": true,\n \"disabled\": true,\n \"visibility\": \"private\",\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n }\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -69383,13 +69382,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 6,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"name\": \"ruby\",\n \"display_name\": \"Ruby\",\n \"short_description\": \"Ruby is a scripting language designed for simplified object-oriented programming.\",\n \"description\": \"Ruby was developed by Yukihiro \\\"Matz\\\" Matsumoto in 1995 with the intent of having an easily readable programming language. It is integrated with the Rails framework to create dynamic web-applications. Ruby's syntax is similar to that of Perl and Python.\",\n \"created_by\": \"Yukihiro Matsumoto\",\n \"released\": \"December 21, 1995\",\n \"created_at\": \"2016-11-28T22:03:59Z\",\n \"updated_at\": \"2017-10-30T18:16:32Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"rails\",\n \"display_name\": \"Rails\",\n \"short_description\": \"Ruby on Rails (Rails) is a web application framework written in Ruby.\",\n \"description\": \"Ruby on Rails (Rails) is a web application framework written in Ruby. It is meant to help simplify the building of complex websites.\",\n \"created_by\": \"David Heinemeier Hansson\",\n \"released\": \"December 13 2005\",\n \"created_at\": \"2016-12-09T17:03:50Z\",\n \"updated_at\": \"2017-10-30T16:20:19Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"python\",\n \"display_name\": \"Python\",\n \"short_description\": \"Python is a dynamically typed programming language.\",\n \"description\": \"Python is a dynamically typed programming language designed by Guido Van Rossum. Much like the programming language Ruby, Python was designed to be easily read by programmers. Because of its large following and many libraries, Python can be implemented and used to do anything from webpages to scientific research.\",\n \"created_by\": \"Guido van Rossum\",\n \"released\": \"February 20, 1991\",\n \"created_at\": \"2016-12-07T00:07:02Z\",\n \"updated_at\": \"2017-10-27T22:45:43Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"jekyll\",\n \"display_name\": \"Jekyll\",\n \"short_description\": \"Jekyll is a simple, blog-aware static site generator.\",\n \"description\": \"Jekyll is a blog-aware, site generator written in Ruby. It takes raw text files, runs it through a renderer and produces a publishable static website.\",\n \"created_by\": \"Tom Preston-Werner\",\n \"released\": \"2008\",\n \"created_at\": \"2016-12-16T21:53:08Z\",\n \"updated_at\": \"2017-10-27T19:00:24Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"sass\",\n \"display_name\": \"Sass\",\n \"short_description\": \"Sass is a stable extension to classic CSS.\",\n \"description\": \"Sass is a stylesheet language with a main implementation in Ruby. It is an extension of CSS that makes improvements to the old stylesheet format, such as being able to declare variables and using a cleaner nesting syntax.\",\n \"created_by\": \"Hampton Catlin, Natalie Weizenbaum, Chris Eppstein\",\n \"released\": \"November 28, 2006\",\n \"created_at\": \"2016-12-16T21:53:45Z\",\n \"updated_at\": \"2018-01-16T16:30:40Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n },\n {\n \"name\": \"homebrew\",\n \"display_name\": \"Homebrew\",\n \"short_description\": \"Homebrew is a package manager for macOS.\",\n \"description\": \"Homebrew is a package manager for Apple's macOS operating system. It simplifies the installation of software and is popular in the Ruby on Rails community.\",\n \"created_by\": \"Max Howell\",\n \"released\": \"2009\",\n \"created_at\": \"2016-12-17T20:30:44Z\",\n \"updated_at\": \"2018-02-06T16:14:56Z\",\n \"featured\": true,\n \"curated\": true,\n \"score\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -69497,23 +69496,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"total_count\": 12,\n \"incomplete_results\": false,\n \"items\": [\n {\n \"login\": \"mojombo\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://secure.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/mojombo\",\n \"html_url\": \"https://github.com/mojombo\",\n \"followers_url\": \"https://api.github.com/users/mojombo/followers\",\n \"subscriptions_url\": \"https://api.github.com/users/mojombo/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/mojombo/orgs\",\n \"repos_url\": \"https://api.github.com/users/mojombo/repos\",\n \"received_events_url\": \"https://api.github.com/users/mojombo/received_events\",\n \"type\": \"User\",\n \"score\": 1,\n \"following_url\": \"https://api.github.com/users/mojombo/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/mojombo/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/mojombo/starred{/owner}{/repo}\",\n \"events_url\": \"https://api.github.com/users/mojombo/events{/privacy}\",\n \"site_admin\": true\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
},
{
"httpStatusCode": "503",
"httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
+ "description": "Service unavailable
"
}
]
},
@@ -69573,13 +69572,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -69773,29 +69772,29 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n }\n}\n
"
},
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -69849,25 +69848,25 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a team endpoint.
\nTo delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a team endpoint.
\nTo delete a team, the authenticated user must be an organization owner or team maintainer.
\nIf you are an organization owner, deleting a parent team will delete all of its child teams as well.
"
+ ]
},
{
"verb": "get",
@@ -69962,7 +69961,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -70104,7 +70103,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -70176,7 +70175,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 0,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": null,\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Our first team post\",\n \"updated_at\": \"2018-01-25T18:56:31Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -70301,7 +70300,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Hi! This is an area for us to collaborate as a team.\",\n \"body_html\": \"<p>Hi! This is an area for us to collaborate as a team</p>\",\n \"body_version\": \"0d495416a700fb06133c612575d92bfb\",\n \"comments_count\": 1,\n \"comments_url\": \"https://api.github.com/teams/2343027/discussions/1/comments\",\n \"created_at\": \"2018-01-25T18:56:31Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1\",\n \"node_id\": \"MDE0OlRlYW1EaXNjdXNzaW9uMQ==\",\n \"number\": 1,\n \"pinned\": false,\n \"private\": false,\n \"team_url\": \"https://api.github.com/teams/2343027\",\n \"title\": \"Welcome to our first team post\",\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2343027/discussions/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2343027/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -70367,15 +70366,15 @@
"subcategory": "discussions",
"subcategoryLabel": "Discussions",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion endpoint.
\nDelete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion endpoint.
\nDelete a discussion from a team's page. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -70479,7 +70478,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n }\n]\n
"
}
]
@@ -70590,7 +70589,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -70671,7 +70670,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like apples?\",\n \"body_html\": \"<p>Do you like apples?</p>\",\n \"body_version\": \"5eb32b219cdc6a5a9b29ba5d6caa9c51\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": null,\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-15T23:53:58Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -70790,7 +70789,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"author\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Do you like pineapples?\",\n \"body_html\": \"<p>Do you like pineapples?</p>\",\n \"body_version\": \"e6907b24d9c93cc0c5024a7af5888116\",\n \"created_at\": \"2018-01-15T23:53:58Z\",\n \"last_edited_at\": \"2018-01-26T18:22:20Z\",\n \"discussion_url\": \"https://api.github.com/teams/2403582/discussions/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\",\n \"node_id\": \"MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\",\n \"number\": 1,\n \"updated_at\": \"2018-01-26T18:22:20Z\",\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/comments/1\",\n \"reactions\": {\n \"url\": \"https://api.github.com/teams/2403582/discussions/1/reactions\",\n \"total_count\": 5,\n \"+1\": 3,\n \"-1\": 1,\n \"laugh\": 0,\n \"confused\": 0,\n \"heart\": 1,\n \"hooray\": 0,\n \"eyes\": 1,\n \"rocket\": 1\n }\n}\n
"
}
]
@@ -70865,15 +70864,15 @@
"subcategory": "discussion-comments",
"subcategoryLabel": "Discussion comments",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion comment endpoint.
\nDeletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Delete a discussion comment endpoint.
\nDeletes a comment on a team discussion. OAuth access tokens require the write:discussion scope.
"
+ ]
},
{
"verb": "get",
@@ -70989,7 +70988,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -71126,7 +71125,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -71236,7 +71235,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n }\n]\n
"
}
]
@@ -71364,7 +71363,7 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"node_id\": \"MDg6UmVhY3Rpb24x\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"content\": \"heart\",\n \"created_at\": \"2016-05-20T20:09:31Z\"\n}\n
"
}
]
@@ -71463,13 +71462,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -71534,20 +71533,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Get team member\" endpoint (described below) is deprecated.
\nWe recommend using the Get team membership for a user endpoint instead. It allows you to get both active and pending memberships.
\nTo list members in a team, the team must be visible to the authenticated user.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if user is a member"
+ "description": "if user is a member
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if user is not a member"
+ "description": "if user is not a member
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Get team member\" endpoint (described below) is deprecated.
\nWe recommend using the Get team membership for a user endpoint instead. It allows you to get both active and pending memberships.
\nTo list members in a team, the team must be visible to the authenticated user.
"
+ ]
},
{
"verb": "put",
@@ -71610,30 +71609,30 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Add team member\" endpoint (described below) is deprecated.
\nWe recommend using the Add or update team membership for a user endpoint instead. It allows you to invite new organization members to your teams.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo add someone to a team, the authenticated user must be an organization owner or a team maintainer in the team they're changing. The person being added to the team must be a member of the team's organization.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub AE team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub AE.\"
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team synchronization is set up"
+ "description": "Not Found if team synchronization is set up
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team or you attempt to add a user to a team when they are not a member of at least one other team in the same organization"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team or you attempt to add a user to a team when they are not a member of at least one other team in the same organization
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Add team member\" endpoint (described below) is deprecated.
\nWe recommend using the Add or update team membership for a user endpoint instead. It allows you to invite new organization members to your teams.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo add someone to a team, the authenticated user must be an organization owner or a team maintainer in the team they're changing. The person being added to the team must be a member of the team's organization.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub AE team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub AE.\"
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -71696,20 +71695,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "The \"Remove team member\" endpoint (described below) is deprecated.
\nWe recommend using the Remove team membership for a user endpoint instead. It allows you to remove both active and pending memberships.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a team member, the authenticated user must have 'admin' permissions to the team or be an owner of the org that the team is associated with. Removing a team member does not delete the user, it just removes them from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub AE team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub AE.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if team synchronization is setup"
+ "description": "Not Found if team synchronization is setup
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "The \"Remove team member\" endpoint (described below) is deprecated.
\nWe recommend using the Remove team membership for a user endpoint instead. It allows you to remove both active and pending memberships.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a team member, the authenticated user must have 'admin' permissions to the team or be an owner of the org that the team is associated with. Removing a team member does not delete the user, it just removes them from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub AE team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub AE.\"
"
+ ]
},
{
"verb": "get",
@@ -71784,7 +71783,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -71903,17 +71902,17 @@
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if team synchronization is set up"
+ "description": "Forbidden if team synchronization is set up
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Unprocessable Entity if you attempt to add an organization to a team"
+ "description": "Unprocessable Entity if you attempt to add an organization to a team
"
}
]
},
@@ -71978,20 +71977,20 @@
"subcategory": "members",
"subcategoryLabel": "Members",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove team membership for a user endpoint.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub AE team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub AE.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "if team synchronization is set up"
+ "description": "if team synchronization is set up
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove team membership for a user endpoint.
\nTeam synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see GitHub's products in the GitHub Help documentation.
\nTo remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
\nNote: When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub AE team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"Synchronizing teams between your identity provider and GitHub AE.\"
"
+ ]
},
{
"verb": "get",
@@ -72069,13 +72068,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -72144,13 +72143,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/orgs/octocat\",\n \"url\": \"https://api.github.com/projects/1002605\",\n \"html_url\": \"https://github.com/orgs/api-playground/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002605/columns\",\n \"id\": 1002605,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDU=\",\n \"name\": \"Organization Roadmap\",\n \"body\": \"High-level roadmap for the upcoming year.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-11T20:09:31Z\",\n \"updated_at\": \"2014-03-04T18:58:10Z\",\n \"organization_permission\": \"write\",\n \"private\": false,\n \"permissions\": {\n \"read\": true,\n \"write\": true,\n \"admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if project is not managed by this team"
+ "description": "Not Found if project is not managed by this team
"
}
]
},
@@ -72261,23 +72260,23 @@
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden if the project is not owned by the organization",
+ "description": "Forbidden if the project is not owned by the organization
",
"payload": "{\n \"message\": \"Must have admin rights to Repository.\",\n \"documentation_url\": \"https://docs.github.com/github-ae@latest/rest/reference/teams#add-or-update-team-project-permissions\"\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -72340,30 +72339,30 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a project from a team endpoint.
\nRemoves an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. Note: This endpoint removes the project from the team, but does not delete it.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a project from a team endpoint.
\nRemoves an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have read access to both the team and project, or admin access to the team or project. Note: This endpoint removes the project from the team, but does not delete it.
"
+ ]
},
{
"verb": "get",
@@ -72441,13 +72440,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -72525,18 +72524,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Alternative response with extra repository information",
+ "description": "Alternative response with extra repository information
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"maintain\": false,\n \"push\": false,\n \"triage\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World-Template\",\n \"full_name\": \"octocat/Hello-World-Template\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World-Template\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World-Template\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World-Template.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World-Template.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World-Template.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World-Template\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World-Template/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World-Template\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"pull\": true,\n \"triage\": false,\n \"push\": false,\n \"maintain\": false,\n \"admin\": false\n },\n \"allow_rebase_merge\": true,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n },\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n}\n
"
},
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if repository is managed by this team"
+ "description": "Response if repository is managed by this team
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if repository is not managed by this team"
+ "description": "Not Found if repository is not managed by this team
"
}
]
},
@@ -72635,24 +72634,24 @@
"categoryLabel": "Teams",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new \"Add or update team repository permissions\" endpoint.
\nTo add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new \"Add or update team repository permissions\" endpoint.
\nTo add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a 422 Unprocessable Entity status if you attempt to add a repository to a team that is not owned by the organization.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -72738,15 +72737,15 @@
"category": "teams",
"categoryLabel": "Teams",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a repository from a team endpoint.
\nIf the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. NOTE: This does not delete the repository, it just removes it from the team.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Deprecation Notice: This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new Remove a repository from a team endpoint.
\nIf the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. NOTE: This does not delete the repository, it just removes it from the team.
"
+ ]
},
{
"verb": "get",
@@ -72824,23 +72823,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "if child teams exist",
+ "description": "if child teams exist
",
"payload": "[\n {\n \"id\": 2,\n \"node_id\": \"MDQ6VGVhbTI=\",\n \"url\": \"https://api.github.com/teams/2\",\n \"name\": \"Original Roster\",\n \"slug\": \"original-roster\",\n \"description\": \"Started it all.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/2/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/2/repos\",\n \"parent\": {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\"\n },\n \"html_url\": \"https://github.com/orgs/rails/teams/core\"\n }\n]\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -72899,17 +72898,17 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -73128,33 +73127,33 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false,\n \"name\": \"monalisa octocat\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"hireable\": false,\n \"bio\": \"There once was...\",\n \"twitter_username\": \"monatheoctocat\",\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2008-01-14T04:33:35Z\",\n \"private_gists\": 81,\n \"total_private_repos\": 100,\n \"owned_private_repos\": 100,\n \"disk_usage\": 10000,\n \"collaborators\": 8,\n \"two_factor_authentication\": true,\n \"plan\": {\n \"name\": \"Medium\",\n \"space\": 400,\n \"private_repos\": 20,\n \"collaborators\": 0\n }\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -73224,23 +73223,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -73310,23 +73309,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -73380,34 +73379,34 @@
"subcategoryLabel": "Followers",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if the person is followed by the authenticated user"
+ "description": "if the person is followed by the authenticated user
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if the person is not followed by the authenticated user"
+ "description": "if the person is not followed by the authenticated user
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -73458,35 +73457,35 @@
"subcategory": "followers",
"subcategoryLabel": "Followers",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nFollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
\nFollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
"
+ ]
},
{
"verb": "delete",
@@ -73537,35 +73536,35 @@
"subcategory": "followers",
"subcategoryLabel": "Followers",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Unfollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Unfollowing a user requires the user to be logged in and authenticated with basic auth or OAuth with the user:follow scope.
"
+ ]
},
{
"verb": "get",
@@ -73633,28 +73632,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"string\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -73738,33 +73737,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"\\\"-----BEGIN PGP PUBLIC KEY BLOCK-----\\\\nVersion: GnuPG v2\\\\n\\\\nmQENBFayYZ0BCAC4hScoJXXpyR+MXGcrBxElqw3FzCVvkViuyeko+Jp76QJhg8kr\\\\nucRTxbnOoHfda/FmilEa/wxf9ch5/PSrrL26FxEoPHhJolp8fnIDLQeITn94NYdB\\\\nZtnnEKslpPrG97qSUWIchvyqCPtvOb8+8fWvGx9K/ZWcEEdh1X8+WFR2jMENMeoX\\\\nwxHWQoPnS7LpX/85/M7VUcJxvDVfv+eHsnQupmE5bGarKNih0oMe3LbdN3qA5PTz\\\\nSCm6Iudar1VsQ+xTz08ymL7t4pnEtLguQ7EyatFHCjxNblv5RzxoL0tDgN3HqoDz\\\\nc7TEA+q4RtDQl9amcvQ95emnXmZ974u7UkYdABEBAAG0HlNvbWUgVXNlciA8c29t\\\\nZXVzZXJAZ21haWwuY29tPokBOAQTAQIAIgUCVrJhnQIbAwYLCQgHAwIGFQgCCQoL\\\\nBBYCAwECHgECF4AACgkQMmLv8lug0nAViQgArWjI55+7p48URr2z9Jvak+yrBTx1\\\\nzkufltQAnHTJkq+Kl9dySSmTnOop8o3rE4++IOpYV5Y36PkKf9EZMk4n1RQiDPKE\\\\nAFtRVTkRaoWzOir9KQXJPfhKrl01j/QzY+utfiMvUoBJZ9ybq8Pa885SljW9lbaX\\\\nIYw+hl8ZdJ2KStvGrEyfQvRyq3aN5c9TV//4BdGnwx7Qabq/U+G18lizG6f/yq15\\\\ned7t0KELaCfeKPvytp4VE9/z/Ksah/h3+Qilx07/oG2Ae5kC1bEC9coD/ogPUhbv\\\\nb2bsBIoY9E9YwsLoif2lU+o1t76zLgUktuNscRRUKobW028H1zuFS/XQhrkBDQRW\\\\nsmGdAQgApnyyv3i144OLYy0O4UKQxd3e10Y3WpDwfnGIBefAI1m7RxnUxBag/DsU\\\\n7gi9qLEC4VHSfq4eiNfr1LJOyCL2edTgCWFgBhVjbXjZe6YAOrAnhxwCErnN0Y7N\\\\n6s8wVh9fObSOyf8ZE6G7JeKpcq9Q6gd/KxagfD48a1v+fyRHpyQc6J9pUEmtrDJ7\\\\nBjmsd2VWzLBvNWdHyxDNtZweIaqIO9VUYYpr1mtTliNBOZLUelmgrt7HBRcJpWMA\\\\nS8muVVbuP5MK0trLBq/JB8qUH3zRzB/PhMgzmkIfjEK1VYDWm4E8DYyTWEJcHqkb\\\\neqFsNjrIlwPaA122BWC6gUOPwwH+oQARAQABiQEfBBgBAgAJBQJWsmGdAhsMAAoJ\\\\nEDJi7/JboNJwAyAIALd4xcdmGbZD98gScJzqwzkOMcO8zFHqHNvJ42xIFvGny7c0\\\\n1Rx7iyrdypOby5AxE+viQcjG4rpLZW/xKYBNGrCfDyQO7511I0v8x20EICMlMfD/\\\\nNrWQCzesEPcUlKTP07d+sFyP8AyseOidbzY/92CpskTgdSBjY/ntLSaoknl/fjJE\\\\nQM8OkPqU7IraO1Jzzdnm20d5PZL9+PIwIWdSTedU/vBMTJyNcoqvSfKf1wNC66XP\\\\nhqfYgXJE564AdWZKA3C0IyCqiv+LHwxLnUHio1a4/r91C8KPzxs6tGxRDjXLd7ms\\\\nuYFGWymiUGOE/giHlcxdYcHzwLnPDliMQOLiTkK5AQ0EVuxMygEIAOD+bW1cDTmE\\\\nBxh5JECoqeHuwgl6DlLhnubWPkQ4ZeRzBRAsFcEJQlwlJjrzFDicL+lnm6Qq4tt0\\\\n560TwHdf15/AKTZIZu7H25axvGNzgeaUkJEJdYAq9zTKWwX7wKyzBszi485nQg97\\\\nMfAqwhMpDW0Qqf8+7Ug+WEmfBSGv9uL3aQC6WEeIsHfri0n0n8v4XgwhfShXguxO\\\\nCsOztEsuW7WWKW9P4TngKKv4lCHdPlV6FwxeMzODBJvc2fkHVHnqc0PqszJ5xcF8\\\\n6gZCpMM027SbpeYWCAD5zwJyYP9ntfO1p2HjnQ1dZaP9FeNcO7uIV1Lnd1eGCu6I\\\\nsrVp5k1f3isAEQEAAYkCPgQYAQIACQUCVuxMygIbAgEpCRAyYu/yW6DScMBdIAQZ\\\\nAQIABgUCVuxMygAKCRCKohN4dhq2b4tcCACHxmOHVXNpu47OvUGYQydLgMACUlXN\\\\nlj+HfE0VReqShxdDmpasAY9IRpuMB2RsGK8GbNP+4SlOlAiPf5SMhS7nZNkNDgQQ\\\\naZ3HFpgrFmFwmE10BKT4iQtoxELLM57z0qGOAfTsEjWFQa4sF+6IHAQR/ptkdkkI\\\\nBUEXiMnAwVwBysLIJiLO8qdjB6qp52QkT074JVrwywT/P+DkMfC2k4r/AfEbf6eF\\\\ndmPDuPk6KD87+hJZsSa5MaMUBQVvRO/mgEkhJRITVu58eWGaBOcQJ8gqurhCqM5P\\\\nDfUA4TJ7wiqM6sS764vV1rOioTTXkszzhClQqET7hPVnVQjenYgv0EZHNyQH/1f1\\\\n/CYqvV1vFjM9vJjMbxXsATCkZe6wvBVKD8vLsJAr8N+onKQz+4OPc3kmKq7aESu3\\\\nCi/iuie5KKVwnuNhr9AzT61vEkKxwHcVFEvHB77F6ZAAInhRvjzmQbD2dlPLLQCC\\\\nqDj71ODSSAPTEmUy6969bgD9PfWei7kNkBIx7s3eBv8yzytSc2EcuUgopqFazquw\\\\nFs1+tqGHjBvQfTo6bqbJjp/9Ci2pvde3ElV2rAgUlb3lqXyXjRDqrXosh5GcRPQj\\\\nK8Nhj1BNhnrCVskE4BP0LYbOHuzgm86uXwGCFsY+w2VOsSm16Jx5GHyG5S5WU3+D\\\\nIts/HFYRLiFgDLmTlxo=\\\\n=+OzK\\\\n-----END PGP PUBLIC KEY BLOCK-----\\\"\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -73824,28 +73823,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"\\\"-----BEGIN PGP PUBLIC KEY BLOCK-----\\\\nVersion: GnuPG v2\\\\n\\\\nmQENBFayYZ0BCAC4hScoJXXpyR+MXGcrBxElqw3FzCVvkViuyeko+Jp76QJhg8kr\\\\nucRTxbnOoHfda/FmilEa/wxf9ch5/PSrrL26FxEoPHhJolp8fnIDLQeITn94NYdB\\\\nZtnnEKslpPrG97qSUWIchvyqCPtvOb8+8fWvGx9K/ZWcEEdh1X8+WFR2jMENMeoX\\\\nwxHWQoPnS7LpX/85/M7VUcJxvDVfv+eHsnQupmE5bGarKNih0oMe3LbdN3qA5PTz\\\\nSCm6Iudar1VsQ+xTz08ymL7t4pnEtLguQ7EyatFHCjxNblv5RzxoL0tDgN3HqoDz\\\\nc7TEA+q4RtDQl9amcvQ95emnXmZ974u7UkYdABEBAAG0HlNvbWUgVXNlciA8c29t\\\\nZXVzZXJAZ21haWwuY29tPokBOAQTAQIAIgUCVrJhnQIbAwYLCQgHAwIGFQgCCQoL\\\\nBBYCAwECHgECF4AACgkQMmLv8lug0nAViQgArWjI55+7p48URr2z9Jvak+yrBTx1\\\\nzkufltQAnHTJkq+Kl9dySSmTnOop8o3rE4++IOpYV5Y36PkKf9EZMk4n1RQiDPKE\\\\nAFtRVTkRaoWzOir9KQXJPfhKrl01j/QzY+utfiMvUoBJZ9ybq8Pa885SljW9lbaX\\\\nIYw+hl8ZdJ2KStvGrEyfQvRyq3aN5c9TV//4BdGnwx7Qabq/U+G18lizG6f/yq15\\\\ned7t0KELaCfeKPvytp4VE9/z/Ksah/h3+Qilx07/oG2Ae5kC1bEC9coD/ogPUhbv\\\\nb2bsBIoY9E9YwsLoif2lU+o1t76zLgUktuNscRRUKobW028H1zuFS/XQhrkBDQRW\\\\nsmGdAQgApnyyv3i144OLYy0O4UKQxd3e10Y3WpDwfnGIBefAI1m7RxnUxBag/DsU\\\\n7gi9qLEC4VHSfq4eiNfr1LJOyCL2edTgCWFgBhVjbXjZe6YAOrAnhxwCErnN0Y7N\\\\n6s8wVh9fObSOyf8ZE6G7JeKpcq9Q6gd/KxagfD48a1v+fyRHpyQc6J9pUEmtrDJ7\\\\nBjmsd2VWzLBvNWdHyxDNtZweIaqIO9VUYYpr1mtTliNBOZLUelmgrt7HBRcJpWMA\\\\nS8muVVbuP5MK0trLBq/JB8qUH3zRzB/PhMgzmkIfjEK1VYDWm4E8DYyTWEJcHqkb\\\\neqFsNjrIlwPaA122BWC6gUOPwwH+oQARAQABiQEfBBgBAgAJBQJWsmGdAhsMAAoJ\\\\nEDJi7/JboNJwAyAIALd4xcdmGbZD98gScJzqwzkOMcO8zFHqHNvJ42xIFvGny7c0\\\\n1Rx7iyrdypOby5AxE+viQcjG4rpLZW/xKYBNGrCfDyQO7511I0v8x20EICMlMfD/\\\\nNrWQCzesEPcUlKTP07d+sFyP8AyseOidbzY/92CpskTgdSBjY/ntLSaoknl/fjJE\\\\nQM8OkPqU7IraO1Jzzdnm20d5PZL9+PIwIWdSTedU/vBMTJyNcoqvSfKf1wNC66XP\\\\nhqfYgXJE564AdWZKA3C0IyCqiv+LHwxLnUHio1a4/r91C8KPzxs6tGxRDjXLd7ms\\\\nuYFGWymiUGOE/giHlcxdYcHzwLnPDliMQOLiTkK5AQ0EVuxMygEIAOD+bW1cDTmE\\\\nBxh5JECoqeHuwgl6DlLhnubWPkQ4ZeRzBRAsFcEJQlwlJjrzFDicL+lnm6Qq4tt0\\\\n560TwHdf15/AKTZIZu7H25axvGNzgeaUkJEJdYAq9zTKWwX7wKyzBszi485nQg97\\\\nMfAqwhMpDW0Qqf8+7Ug+WEmfBSGv9uL3aQC6WEeIsHfri0n0n8v4XgwhfShXguxO\\\\nCsOztEsuW7WWKW9P4TngKKv4lCHdPlV6FwxeMzODBJvc2fkHVHnqc0PqszJ5xcF8\\\\n6gZCpMM027SbpeYWCAD5zwJyYP9ntfO1p2HjnQ1dZaP9FeNcO7uIV1Lnd1eGCu6I\\\\nsrVp5k1f3isAEQEAAYkCPgQYAQIACQUCVuxMygIbAgEpCRAyYu/yW6DScMBdIAQZ\\\\nAQIABgUCVuxMygAKCRCKohN4dhq2b4tcCACHxmOHVXNpu47OvUGYQydLgMACUlXN\\\\nlj+HfE0VReqShxdDmpasAY9IRpuMB2RsGK8GbNP+4SlOlAiPf5SMhS7nZNkNDgQQ\\\\naZ3HFpgrFmFwmE10BKT4iQtoxELLM57z0qGOAfTsEjWFQa4sF+6IHAQR/ptkdkkI\\\\nBUEXiMnAwVwBysLIJiLO8qdjB6qp52QkT074JVrwywT/P+DkMfC2k4r/AfEbf6eF\\\\ndmPDuPk6KD87+hJZsSa5MaMUBQVvRO/mgEkhJRITVu58eWGaBOcQJ8gqurhCqM5P\\\\nDfUA4TJ7wiqM6sS764vV1rOioTTXkszzhClQqET7hPVnVQjenYgv0EZHNyQH/1f1\\\\n/CYqvV1vFjM9vJjMbxXsATCkZe6wvBVKD8vLsJAr8N+onKQz+4OPc3kmKq7aESu3\\\\nCi/iuie5KKVwnuNhr9AzT61vEkKxwHcVFEvHB77F6ZAAInhRvjzmQbD2dlPLLQCC\\\\nqDj71ODSSAPTEmUy6969bgD9PfWei7kNkBIx7s3eBv8yzytSc2EcuUgopqFazquw\\\\nFs1+tqGHjBvQfTo6bqbJjp/9Ci2pvde3ElV2rAgUlb3lqXyXjRDqrXosh5GcRPQj\\\\nK8Nhj1BNhnrCVskE4BP0LYbOHuzgm86uXwGCFsY+w2VOsSm16Jx5GHyG5S5WU3+D\\\\nIts/HFYRLiFgDLmTlxo=\\\\n=+OzK\\\\n-----END PGP PUBLIC KEY BLOCK-----\\\"\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -73899,40 +73898,40 @@
"subcategory": "gpg-keys",
"subcategoryLabel": "Gpg keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a GPG key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:gpg_key scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a GPG key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:gpg_key scope.
"
+ ]
},
{
"verb": "get",
@@ -74000,28 +73999,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "You can find the permissions for the installation under the `permissions` key.",
+ "description": "You can find the permissions for the installation under the permissions key.
",
"payload": "{\n \"total_count\": 2,\n \"installations\": [\n {\n \"id\": 1,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"all\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n },\n {\n \"id\": 3,\n \"account\": {\n \"login\": \"octocat\",\n \"id\": 2,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"single_file_name\": \"config.yaml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"repository_selection\": \"all\",\n \"created_at\": \"2017-07-08T16:18:44-04:00\",\n \"updated_at\": \"2017-07-08T16:18:44-04:00\",\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
}
]
},
@@ -74101,23 +74100,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "The access the user has to each repository is included in the hash under the `permissions` key.",
+ "description": "The access the user has to each repository is included in the hash under the permissions key.
",
"payload": "{\n \"total_count\": 1,\n \"repositories\": [\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n }\n ]\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -74180,30 +74179,30 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Add a single repository to an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Add a single repository to an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
"
+ ]
},
{
"verb": "delete",
@@ -74264,30 +74263,30 @@
"subcategory": "installations",
"subcategoryLabel": "Installations",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Remove a single repository from an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Remove a single repository from an installation. The authenticated user must have admin access to the repository.
\nYou must use a personal access token (which you can create via the command line or Basic Authentication) to access this endpoint.
"
+ ]
},
{
"verb": "get",
@@ -74440,18 +74439,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDU6SXNzdWUx\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347\",\n \"repository_url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/1347/events\",\n \"html_url\": \"https://github.com/octocat/Hello-World/issues/1347\",\n \"number\": 1347,\n \"state\": \"open\",\n \"title\": \"Found a bug\",\n \"body\": \"I'm having a problem with this.\",\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"labels\": [\n {\n \"id\": 208045946,\n \"node_id\": \"MDU6TGFiZWwyMDgwNDU5NDY=\",\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/labels/bug\",\n \"name\": \"bug\",\n \"description\": \"Something isn't working\",\n \"color\": \"f29513\",\n \"default\": true\n }\n ],\n \"assignee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"assignees\": [\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n ],\n \"milestone\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1\",\n \"html_url\": \"https://github.com/octocat/Hello-World/milestones/v1.0\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\",\n \"id\": 1002604,\n \"node_id\": \"MDk6TWlsZXN0b25lMTAwMjYwNA==\",\n \"number\": 1,\n \"state\": \"open\",\n \"title\": \"v1.0\",\n \"description\": \"Tracking milestone for version 1.0\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"open_issues\": 4,\n \"closed_issues\": 8,\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\",\n \"closed_at\": \"2013-02-12T13:22:01Z\",\n \"due_on\": \"2012-10-09T23:39:01Z\"\n },\n \"locked\": true,\n \"active_lock_reason\": \"too heated\",\n \"comments\": 0,\n \"pull_request\": {\n \"url\": \"https://api.github.com/repos/octocat/Hello-World/pulls/1347\",\n \"html_url\": \"https://github.com/octocat/Hello-World/pull/1347\",\n \"diff_url\": \"https://github.com/octocat/Hello-World/pull/1347.diff\",\n \"patch_url\": \"https://github.com/octocat/Hello-World/pull/1347.patch\"\n },\n \"closed_at\": null,\n \"created_at\": \"2011-04-22T13:33:48Z\",\n \"updated_at\": \"2011-04-22T13:33:48Z\",\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://github.com/licenses/mit\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 1\n },\n \"author_association\": \"COLLABORATOR\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -74521,28 +74520,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n },\n {\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234\",\n \"id\": 3,\n \"url\": \"https://api.github.com/user/keys/3\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAB\",\n \"created_at\": \"2020-07-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -74648,33 +74647,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -74734,28 +74733,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"key\": \"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\",\n \"id\": 2,\n \"url\": \"https://api.github.com/user/keys/2\",\n \"title\": \"ssh-rsa AAAAB3NzaC1yc2EAAA\",\n \"created_at\": \"2020-06-11T21:31:57Z\",\n \"verified\": false,\n \"read_only\": false\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -74809,35 +74808,35 @@
"subcategory": "keys",
"subcategoryLabel": "Keys",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Removes a public SSH key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:public_key scope.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Removes a public SSH key from the authenticated user's GitHub account. Requires that you are authenticated via Basic Auth or via OAuth with at least admin:public_key scope.
"
+ ]
},
{
"verb": "get",
@@ -74919,28 +74918,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/orgs/octocat/memberships/defunkt\",\n \"state\": \"active\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/octocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n },\n {\n \"url\": \"https://api.github.com/orgs/invitocat/memberships/defunkt\",\n \"state\": \"pending\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/invitocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -74999,18 +74998,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/orgs/invitocat/memberships/defunkt\",\n \"state\": \"pending\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/invitocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -75113,23 +75112,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"url\": \"https://api.github.com/orgs/octocat/memberships/defunkt\",\n \"state\": \"active\",\n \"role\": \"admin\",\n \"organization_url\": \"https://api.github.com/orgs/octocat\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n },\n \"user\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -75197,23 +75196,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -75319,33 +75318,33 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"owner_url\": \"https://api.github.com/users/octocat\",\n \"url\": \"https://api.github.com/projects/1002603\",\n \"html_url\": \"https://github.com/users/octocat/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002603/columns\",\n \"id\": 1002603,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDM=\",\n \"name\": \"My Projects\",\n \"body\": \"A board to manage my personal projects.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "415",
"httpStatusMessage": "Unsupported Media Type",
- "description": "Preview header missing"
+ "description": "Preview header missing
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -75517,22 +75516,22 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -75970,38 +75969,38 @@
{
"httpStatusCode": "201",
"httpStatusMessage": "Created",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"organization\": null,\n \"language\": null,\n \"forks\": 9,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"watchers\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues\": 0,\n \"open_issues_count\": 0,\n \"is_template\": true,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"spdx_id\": \"MIT\",\n \"node_id\": \"MDc6TGljZW5zZW1pdA==\",\n \"html_url\": \"https://api.github.com/licenses/mit\"\n },\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"allow_rebase_merge\": true,\n \"template_repository\": null,\n \"temp_clone_token\": \"ABTLWHOULUVAXGTRYU7OC2876QJ2O\",\n \"allow_squash_merge\": true,\n \"allow_auto_merge\": false,\n \"delete_branch_on_merge\": true,\n \"allow_merge_commit\": true,\n \"subscribers_count\": 42,\n \"network_count\": 0\n}\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "400",
"httpStatusMessage": "Bad Request",
- "description": "Bad Request"
+ "description": "Bad Request
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -76071,28 +76070,28 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"repository\": {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n },\n \"invitee\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"inviter\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"permissions\": \"write\",\n \"created_at\": \"2016-06-13T14:52:50-05:00\",\n \"url\": \"https://api.github.com/user/repository_invitations/1296269\",\n \"html_url\": \"https://github.com/octocat/Hello-World/invitations\",\n \"node_id\": \"MDQ6VXNlcjE=\"\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -76147,34 +76146,34 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "delete",
@@ -76227,34 +76226,34 @@
"subcategoryLabel": "Invitations",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "409",
"httpStatusMessage": "Conflict",
- "description": "Conflict"
+ "description": "Conflict
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -76358,17 +76357,17 @@
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -76431,34 +76430,34 @@
"subcategoryLabel": "Starring",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response if this repository is starred by you"
+ "description": "Response if this repository is starred by you
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Not Found if this repository is not starred by you"
+ "description": "Not Found if this repository is not starred by you
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "put",
@@ -76518,35 +76517,35 @@
"subcategory": "starring",
"subcategoryLabel": "Starring",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Note that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
"
+ ]
},
{
"verb": "delete",
@@ -76607,34 +76606,34 @@
"subcategoryLabel": "Starring",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -76702,23 +76701,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "401",
"httpStatusMessage": "Unauthorized",
- "description": "Requires authentication"
+ "description": "Requires authentication
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
}
]
},
@@ -76786,23 +76785,23 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"node_id\": \"MDQ6VGVhbTE=\",\n \"url\": \"https://api.github.com/teams/1\",\n \"html_url\": \"https://github.com/orgs/github/teams/justice-league\",\n \"name\": \"Justice League\",\n \"slug\": \"justice-league\",\n \"description\": \"A great team.\",\n \"privacy\": \"closed\",\n \"permission\": \"admin\",\n \"members_url\": \"https://api.github.com/teams/1/members{/member}\",\n \"repositories_url\": \"https://api.github.com/teams/1/repos\",\n \"parent\": null,\n \"members_count\": 3,\n \"repos_count\": 10,\n \"created_at\": \"2017-07-14T16:53:42Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"organization\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\",\n \"name\": \"github\",\n \"company\": \"GitHub\",\n \"blog\": \"https://github.com/blog\",\n \"location\": \"San Francisco\",\n \"email\": \"octocat@github.com\",\n \"is_verified\": true,\n \"has_organization_projects\": true,\n \"has_repository_projects\": true,\n \"public_repos\": 2,\n \"public_gists\": 1,\n \"followers\": 20,\n \"following\": 0,\n \"html_url\": \"https://github.com/octocat\",\n \"created_at\": \"2008-01-14T04:33:35Z\",\n \"updated_at\": \"2017-08-17T12:37:15Z\",\n \"type\": \"Organization\"\n }\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
},
{
"httpStatusCode": "403",
"httpStatusMessage": "Forbidden",
- "description": "Forbidden"
+ "description": "Forbidden
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -76870,13 +76869,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
},
{
"httpStatusCode": "304",
"httpStatusMessage": "Not Modified",
- "description": "Not modified"
+ "description": "Not modified
"
}
]
},
@@ -76945,7 +76944,7 @@
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
}
]
},
@@ -77018,15 +77017,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "If you are authenticated as the given user, you will see your private events. Otherwise, you'll only see public events.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "If you are authenticated as the given user, you will see your private events. Otherwise, you'll only see public events.
"
+ ]
},
{
"verb": "get",
@@ -77106,15 +77105,15 @@
"subcategory": "events",
"subcategoryLabel": "Events",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "This is the user's organization dashboard. You must be authenticated as the user to view this.
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "This is the user's organization dashboard. You must be authenticated as the user to view this.
"
+ ]
},
{
"verb": "get",
@@ -77191,7 +77190,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -77271,7 +77270,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n
"
}
]
@@ -77335,19 +77334,19 @@
"subcategoryLabel": "Followers",
"notes": [],
"descriptionHTML": "",
+ "bodyParameters": [],
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "if the user follows the target user"
+ "description": "if the user follows the target user
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "if the user does not follow the target user"
+ "description": "if the user does not follow the target user
"
}
- ],
- "bodyParameters": []
+ ]
},
{
"verb": "get",
@@ -77433,13 +77432,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d\",\n \"forks_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/forks\",\n \"commits_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/commits\",\n \"id\": \"aa5a315d61ae9438b18d\",\n \"node_id\": \"MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\",\n \"git_pull_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"git_push_url\": \"https://gist.github.com/aa5a315d61ae9438b18d.git\",\n \"html_url\": \"https://gist.github.com/aa5a315d61ae9438b18d\",\n \"files\": {\n \"hello_world.rb\": {\n \"filename\": \"hello_world.rb\",\n \"type\": \"application/x-ruby\",\n \"language\": \"Ruby\",\n \"raw_url\": \"https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\",\n \"size\": 167\n }\n },\n \"public\": true,\n \"created_at\": \"2010-04-14T02:15:15Z\",\n \"updated_at\": \"2011-06-20T11:34:15Z\",\n \"description\": \"Hello World Examples\",\n \"comments\": 0,\n \"user\": null,\n \"comments_url\": \"https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"truncated\": false\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -77518,7 +77517,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 3,\n \"primary_key_id\": 2,\n \"key_id\": \"3262EFF25BA0D270\",\n \"public_key\": \"xsBNBFayYZ...\",\n \"emails\": [\n {\n \"email\": \"mastahyeti@users.noreply.github.com\",\n \"verified\": true\n }\n ],\n \"subkeys\": [\n {\n \"id\": 4,\n \"primary_key_id\": 3,\n \"key_id\": \"4A595D4C72EE49C7\",\n \"public_key\": \"zsBNBFayYZ...\",\n \"emails\": [],\n \"subkeys\": [],\n \"can_sign\": false,\n \"can_encrypt_comms\": true,\n \"can_encrypt_storage\": true,\n \"can_certify\": false,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\"\n }\n ],\n \"can_sign\": true,\n \"can_encrypt_comms\": false,\n \"can_encrypt_storage\": false,\n \"can_certify\": true,\n \"created_at\": \"2016-03-24T11:31:04-06:00\",\n \"expires_at\": \"2016-03-24T11:31:04-07:00\",\n \"raw_key\": \"string\"\n }\n]\n
"
}
]
@@ -77602,18 +77601,18 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"contexts\": [\n {\n \"message\": \"Owns this repository\",\n \"octicon\": \"repo\"\n }\n ]\n}\n
"
},
{
"httpStatusCode": "404",
"httpStatusMessage": "Not Found",
- "description": "Resource not found"
+ "description": "Resource not found
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -77670,7 +77669,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "{\n \"id\": 1,\n \"account\": {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"avatar_url\": \"https://github.com/images/error/hubot_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"html_url\": \"https://github.com/github\",\n \"followers_url\": \"https://api.github.com/users/github/followers\",\n \"following_url\": \"https://api.github.com/users/github/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/github/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/github/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/github/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/github/orgs\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"received_events_url\": \"https://api.github.com/users/github/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"repository_selection\": \"all\",\n \"access_tokens_url\": \"https://api.github.com/installations/1/access_tokens\",\n \"repositories_url\": \"https://api.github.com/installation/repositories\",\n \"html_url\": \"https://github.com/organizations/github/settings/installations/1\",\n \"app_id\": 1,\n \"target_id\": 1,\n \"target_type\": \"Organization\",\n \"permissions\": {\n \"checks\": \"write\",\n \"metadata\": \"read\",\n \"contents\": \"read\"\n },\n \"events\": [\n \"push\",\n \"pull_request\"\n ],\n \"created_at\": \"2018-02-09T20:51:14Z\",\n \"updated_at\": \"2018-02-09T20:51:14Z\",\n \"single_file_name\": \"config.yml\",\n \"has_multiple_single_files\": true,\n \"single_file_paths\": [\n \"config.yml\",\n \".github/issue_TEMPLATE.md\"\n ],\n \"app_slug\": \"github-actions\",\n \"suspended_at\": null,\n \"suspended_by\": null\n}\n
"
}
]
@@ -77750,7 +77749,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1,\n \"key\": \"ssh-rsa AAA...\"\n }\n]\n
"
}
]
@@ -77828,7 +77827,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"login\": \"github\",\n \"id\": 1,\n \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n \"url\": \"https://api.github.com/orgs/github\",\n \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n \"events_url\": \"https://api.github.com/orgs/github/events\",\n \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"description\": \"A great organization\"\n }\n]\n
"
}
]
@@ -77922,13 +77921,13 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"owner_url\": \"https://api.github.com/users/octocat\",\n \"url\": \"https://api.github.com/projects/1002603\",\n \"html_url\": \"https://github.com/users/octocat/projects/1\",\n \"columns_url\": \"https://api.github.com/projects/1002603/columns\",\n \"id\": 1002603,\n \"node_id\": \"MDc6UHJvamVjdDEwMDI2MDM=\",\n \"name\": \"My Projects\",\n \"body\": \"A board to manage my personal projects.\",\n \"number\": 1,\n \"state\": \"open\",\n \"creator\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"created_at\": \"2011-04-10T20:09:31Z\",\n \"updated_at\": \"2014-03-03T18:58:10Z\"\n }\n]\n
"
},
{
"httpStatusCode": "422",
"httpStatusMessage": "Unprocessable Entity",
- "description": "Validation failed"
+ "description": "Validation failed
"
}
]
},
@@ -78052,7 +78051,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -78242,7 +78241,7 @@
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response",
+ "description": "Response
",
"payload": "[\n {\n \"id\": 1296269,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n \"name\": \"Hello-World\",\n \"full_name\": \"octocat/Hello-World\",\n \"owner\": {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"private\": false,\n \"html_url\": \"https://github.com/octocat/Hello-World\",\n \"description\": \"This your first repo!\",\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n \"clone_url\": \"https://github.com/octocat/Hello-World.git\",\n \"mirror_url\": \"git:git.example.com/octocat/Hello-World\",\n \"hooks_url\": \"https://api.github.com/repos/octocat/Hello-World/hooks\",\n \"svn_url\": \"https://svn.github.com/octocat/Hello-World\",\n \"homepage\": \"https://github.com\",\n \"language\": null,\n \"forks_count\": 9,\n \"stargazers_count\": 80,\n \"watchers_count\": 80,\n \"size\": 108,\n \"default_branch\": \"master\",\n \"open_issues_count\": 0,\n \"is_template\": false,\n \"topics\": [\n \"octocat\",\n \"atom\",\n \"electron\",\n \"api\"\n ],\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"has_downloads\": true,\n \"archived\": false,\n \"disabled\": false,\n \"visibility\": \"public\",\n \"pushed_at\": \"2011-01-26T19:06:43Z\",\n \"created_at\": \"2011-01-26T19:01:12Z\",\n \"updated_at\": \"2011-01-26T19:14:43Z\",\n \"permissions\": {\n \"admin\": false,\n \"push\": false,\n \"pull\": true\n },\n \"template_repository\": null\n }\n]\n
"
}
]
@@ -78318,14 +78317,14 @@
"subcategoryLabel": "Users",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, Active Directory LDAP-authenticated users cannot be suspended through this API. If you attempt to suspend an Active Directory LDAP-authenticated user through this API, it will return a 403 response.
\nYou can suspend any user account except your own.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, Active Directory LDAP-authenticated users cannot be suspended through this API. If you attempt to suspend an Active Directory LDAP-authenticated user through this API, it will return a 403 response.
\nYou can suspend any user account except your own.
\nNote that, if you choose not to pass any parameters, you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
",
"bodyParameters": [
{
"type": "string",
@@ -78409,14 +78408,14 @@
"subcategoryLabel": "Users",
"contentType": "application/json",
"notes": [],
+ "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, this API is disabled and will return a 403 response. Active Directory LDAP-authenticated users cannot be unsuspended using the API.
",
"responses": [
{
"httpStatusCode": "204",
"httpStatusMessage": "No Content",
- "description": "Response"
+ "description": "Response
"
}
],
- "descriptionHTML": "If your GitHub instance uses LDAP Sync with Active Directory LDAP servers, this API is disabled and will return a 403 response. Active Directory LDAP-authenticated users cannot be unsuspended using the API.
",
"bodyParameters": [
{
"type": "string",
@@ -78461,14 +78460,14 @@
"category": "meta",
"categoryLabel": "Meta",
"notes": [],
+ "bodyParameters": [],
+ "descriptionHTML": "Get a random sentence from the Zen of GitHub
",
"responses": [
{
"httpStatusCode": "200",
"httpStatusMessage": "OK",
- "description": "Response"
+ "description": "Response
"
}
- ],
- "bodyParameters": [],
- "descriptionHTML": "Get a random sentence from the Zen of GitHub
"
+ ]
}
]
\ No newline at end of file
diff --git a/lib/rest/static/dereferenced/api.github.com.deref.json b/lib/rest/static/dereferenced/api.github.com.deref.json
index 276e4ea5a1..02ff05a921 100644
--- a/lib/rest/static/dereferenced/api.github.com.deref.json
+++ b/lib/rest/static/dereferenced/api.github.com.deref.json
@@ -25663,9 +25663,6 @@
"x-github": {
"githubCloudOnly": false,
"enabledForGitHubApps": false,
- "previews": [
-
- ],
"category": "enterprise-admin",
"subcategory": "billing"
}
@@ -54415,9 +54412,6 @@
"x-github": {
"githubCloudOnly": true,
"enabledForGitHubApps": true,
- "previews": [
-
- ],
"category": "teams",
"subcategory": "external-groups"
}
@@ -64402,7 +64396,7 @@
},
"put": {
"summary": "Create or update an organization secret",
- "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -67848,7 +67842,7 @@
},
"put": {
"summary": "Create or update an organization secret",
- "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `dependabot_secrets` organization\npermission to use this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `dependabot_secrets` organization\npermission to use this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"dependabot"
],
@@ -102802,9 +102796,6 @@
"x-github": {
"githubCloudOnly": false,
"enabledForGitHubApps": true,
- "previews": [
-
- ],
"category": "billing",
"subcategory": null
}
@@ -152374,7 +152365,7 @@
},
"put": {
"summary": "Create or update a repository secret",
- "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -194107,6 +194098,7 @@
"cpus": 4
},
"prebuild": false,
+ "devcontainer_path": ".devcontainer/devcontainer.json",
"created_at": "2021-10-14T00:53:30-06:00",
"updated_at": "2021-10-14T00:53:32-06:00",
"last_used_at": "2021-10-14T00:53:30-06:00",
@@ -194251,6 +194243,7 @@
"cpus": 4
},
"prebuild": false,
+ "devcontainer_path": ".devcontainer/devcontainer.json",
"created_at": "2021-10-14T00:53:30-06:00",
"updated_at": "2021-10-14T00:53:32-06:00",
"last_used_at": "2021-10-14T00:53:30-06:00",
@@ -196744,6 +196737,7 @@
"cpus": 4
},
"prebuild": false,
+ "devcontainer_path": ".devcontainer/devcontainer.json",
"created_at": "2021-10-14T00:53:30-06:00",
"updated_at": "2021-10-14T00:53:32-06:00",
"last_used_at": "2021-10-14T00:53:30-06:00",
@@ -199055,6 +199049,7 @@
"cpus": 4
},
"prebuild": false,
+ "devcontainer_path": ".devcontainer/devcontainer.json",
"created_at": "2021-10-14T00:53:30-06:00",
"updated_at": "2021-10-14T00:53:32-06:00",
"last_used_at": "2021-10-14T00:53:30-06:00",
@@ -222298,7 +222293,7 @@
},
"put": {
"summary": "Create or update a repository secret",
- "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `dependabot_secrets` repository\npermission to use this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `dependabot_secrets` repository\npermission to use this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"dependabot"
],
@@ -254324,7 +254319,7 @@
},
"post": {
"summary": "Create an issue",
- "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -279036,7 +279031,7 @@
},
"post": {
"summary": "Create an issue comment",
- "description": "This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -330763,6 +330758,7 @@
"cpus": 4
},
"prebuild": false,
+ "devcontainer_path": ".devcontainer/devcontainer.json",
"created_at": "2021-10-14T00:53:30-06:00",
"updated_at": "2021-10-14T00:53:32-06:00",
"last_used_at": "2021-10-14T00:53:30-06:00",
@@ -333074,6 +333070,7 @@
"cpus": 4
},
"prebuild": false,
+ "devcontainer_path": ".devcontainer/devcontainer.json",
"created_at": "2021-10-14T00:53:30-06:00",
"updated_at": "2021-10-14T00:53:32-06:00",
"last_used_at": "2021-10-14T00:53:30-06:00",
@@ -365810,7 +365807,7 @@
},
"put": {
"summary": "Create or update an environment secret",
- "description": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -397604,6 +397601,7 @@
"cpus": 4
},
"prebuild": false,
+ "devcontainer_path": ".devcontainer/devcontainer.json",
"created_at": "2021-10-14T00:53:30-06:00",
"updated_at": "2021-10-14T00:53:32-06:00",
"last_used_at": "2021-10-14T00:53:30-06:00",
@@ -397748,6 +397746,7 @@
"cpus": 4
},
"prebuild": false,
+ "devcontainer_path": ".devcontainer/foobar/devcontainer.json",
"created_at": "2021-10-14T00:53:30-06:00",
"updated_at": "2021-10-14T00:53:32-06:00",
"last_used_at": "2021-10-14T00:53:30-06:00",
@@ -397892,6 +397891,7 @@
"cpus": 4
},
"prebuild": false,
+ "devcontainer_path": ".devcontainer.json",
"created_at": "2021-10-14T00:53:30-06:00",
"updated_at": "2021-10-14T00:53:32-06:00",
"last_used_at": "2021-10-14T00:53:30-06:00",
@@ -400423,6 +400423,7 @@
"cpus": 4
},
"prebuild": false,
+ "devcontainer_path": ".devcontainer/devcontainer.json",
"created_at": "2021-10-14T00:53:30-06:00",
"updated_at": "2021-10-14T00:53:32-06:00",
"last_used_at": "2021-10-14T00:53:30-06:00",
@@ -402734,6 +402735,7 @@
"cpus": 4
},
"prebuild": false,
+ "devcontainer_path": ".devcontainer/devcontainer.json",
"created_at": "2021-10-14T00:53:30-06:00",
"updated_at": "2021-10-14T00:53:32-06:00",
"last_used_at": "2021-10-14T00:53:30-06:00",
@@ -403363,7 +403365,7 @@
},
"put": {
"summary": "Create or update a secret for the authenticated user",
- "description": "Creates or updates a secret for a user's codespace with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access token with the `user` scope to use this endpoint. User must also have Codespaces access to use this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates a secret for a user's codespace with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access token with the `user` scope to use this endpoint. User must also have Codespaces access to use this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"codespaces"
],
@@ -408425,6 +408427,7 @@
"cpus": 4
},
"prebuild": false,
+ "devcontainer_path": ".devcontainer/devcontainer.json",
"created_at": "2021-10-14T00:53:30-06:00",
"updated_at": "2021-10-14T00:53:32-06:00",
"last_used_at": "2021-10-14T00:53:30-06:00",
@@ -410893,6 +410896,7 @@
"cpus": 4
},
"prebuild": false,
+ "devcontainer_path": ".devcontainer/devcontainer.json",
"created_at": "2021-10-14T00:53:30-06:00",
"updated_at": "2021-10-14T00:53:32-06:00",
"last_used_at": "2021-10-14T00:53:30-06:00",
@@ -413707,6 +413711,7 @@
"cpus": 4
},
"prebuild": false,
+ "devcontainer_path": ".devcontainer/devcontainer.json",
"created_at": "2021-10-14T00:53:30-06:00",
"updated_at": "2021-10-14T00:53:32-06:00",
"last_used_at": "2021-10-14T00:53:30-06:00",
@@ -416270,6 +416275,7 @@
"cpus": 4
},
"prebuild": false,
+ "devcontainer_path": ".devcontainer/devcontainer.json",
"created_at": "2021-10-14T00:53:30-06:00",
"updated_at": "2021-10-14T00:53:32-06:00",
"last_used_at": "2021-10-14T00:53:30-06:00",
diff --git a/lib/rest/static/dereferenced/ghes-3.0.deref.json b/lib/rest/static/dereferenced/ghes-3.0.deref.json
index a474893599..8abfabcccb 100644
--- a/lib/rest/static/dereferenced/ghes-3.0.deref.json
+++ b/lib/rest/static/dereferenced/ghes-3.0.deref.json
@@ -64022,7 +64022,7 @@
},
"put": {
"summary": "Create or update an organization secret",
- "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -123399,7 +123399,7 @@
},
"put": {
"summary": "Create or update a repository secret",
- "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -206456,7 +206456,7 @@
},
"post": {
"summary": "Create an issue",
- "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.0/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.0/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.0/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.0/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.0/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -231159,7 +231159,7 @@
},
"post": {
"summary": "Create an issue comment",
- "description": "This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.0/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.0/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "This endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.0/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.0/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.0/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
diff --git a/lib/rest/static/dereferenced/ghes-3.1.deref.json b/lib/rest/static/dereferenced/ghes-3.1.deref.json
index e53b6bf9f3..c7c2038031 100644
--- a/lib/rest/static/dereferenced/ghes-3.1.deref.json
+++ b/lib/rest/static/dereferenced/ghes-3.1.deref.json
@@ -64047,7 +64047,7 @@
},
"put": {
"summary": "Create or update an organization secret",
- "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -123714,7 +123714,7 @@
},
"put": {
"summary": "Create or update a repository secret",
- "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -209445,7 +209445,7 @@
},
"post": {
"summary": "Create an issue",
- "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.1/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.1/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.1/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.1/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.1/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -234148,7 +234148,7 @@
},
"post": {
"summary": "Create an issue comment",
- "description": "This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.1/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.1/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "This endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.1/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.1/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.1/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
diff --git a/lib/rest/static/dereferenced/ghes-3.2.deref.json b/lib/rest/static/dereferenced/ghes-3.2.deref.json
index f729a2d89f..e04292b656 100644
--- a/lib/rest/static/dereferenced/ghes-3.2.deref.json
+++ b/lib/rest/static/dereferenced/ghes-3.2.deref.json
@@ -65078,7 +65078,7 @@
},
"put": {
"summary": "Create or update an organization secret",
- "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -127317,7 +127317,7 @@
},
"put": {
"summary": "Create or update a repository secret",
- "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -216117,7 +216117,7 @@
},
"post": {
"summary": "Create an issue",
- "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.2/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.2/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.2/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.2/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.2/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -240883,7 +240883,7 @@
},
"post": {
"summary": "Create an issue comment",
- "description": "This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.2/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.2/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "This endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.2/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.2/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.2/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -321562,7 +321562,7 @@
},
"put": {
"summary": "Create or update an environment secret",
- "description": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
diff --git a/lib/rest/static/dereferenced/ghes-3.3.deref.json b/lib/rest/static/dereferenced/ghes-3.3.deref.json
index bc8c4aa724..6f085c4d09 100644
--- a/lib/rest/static/dereferenced/ghes-3.3.deref.json
+++ b/lib/rest/static/dereferenced/ghes-3.3.deref.json
@@ -65303,7 +65303,7 @@
},
"put": {
"summary": "Create or update an organization secret",
- "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -133813,7 +133813,7 @@
},
"put": {
"summary": "Create or update a repository secret",
- "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -223073,7 +223073,7 @@
},
"post": {
"summary": "Create an issue",
- "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.3/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -247785,7 +247785,7 @@
},
"post": {
"summary": "Create an issue comment",
- "description": "This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "This endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.3/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -328846,7 +328846,7 @@
},
"put": {
"summary": "Create or update an environment secret",
- "description": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
diff --git a/lib/rest/static/dereferenced/github.ae.deref.json b/lib/rest/static/dereferenced/github.ae.deref.json
index fa9c701db4..a63ed2f839 100644
--- a/lib/rest/static/dereferenced/github.ae.deref.json
+++ b/lib/rest/static/dereferenced/github.ae.deref.json
@@ -35909,9 +35909,6 @@
"x-github": {
"githubCloudOnly": true,
"enabledForGitHubApps": true,
- "previews": [
-
- ],
"category": "teams",
"subcategory": "external-groups"
}
@@ -39354,7 +39351,7 @@
},
"put": {
"summary": "Create or update an organization secret",
- "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\nuse this endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -97680,7 +97677,7 @@
},
"put": {
"summary": "Create or update a repository secret",
- "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
+ "description": "Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\ntoken with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\nthis endpoint.\n\n#### Example encrypting a secret using Node.js\n\nEncrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n```\nconst sodium = require('tweetsodium');\n\nconst key = \"base64-encoded-public-key\";\nconst value = \"plain-text-secret\";\n\n// Convert the message and key to Uint8Array's (Buffer implements that interface)\nconst messageBytes = Buffer.from(value);\nconst keyBytes = Buffer.from(key, 'base64');\n\n// Encrypt using LibSodium.\nconst encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n// Base64 the encrypted secret\nconst encrypted = Buffer.from(encryptedBytes).toString('base64');\n\nconsole.log(encrypted);\n```\n\n\n#### Example encrypting a secret using Python\n\nEncrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.\n\n```\nfrom base64 import b64encode\nfrom nacl import encoding, public\n\ndef encrypt(public_key: str, secret_value: str) -> str:\n \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n sealed_box = public.SealedBox(public_key)\n encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n return b64encode(encrypted).decode(\"utf-8\")\n```\n\n#### Example encrypting a secret using C#\n\nEncrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n```\nvar secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\nvar publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\nvar sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\nConsole.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n```\n\n#### Example encrypting a secret using Ruby\n\nEncrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n```ruby\nrequire \"rbnacl\"\nrequire \"base64\"\n\nkey = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\npublic_key = RbNaCl::PublicKey.new(key)\n\nbox = RbNaCl::Boxes::Sealed.from_public_key(public_key)\nencrypted_secret = box.encrypt(\"my_secret\")\n\n# Print the base64 encoded secret\nputs Base64.strict_encode64(encrypted_secret)\n```",
"tags": [
"actions"
],
@@ -185066,7 +185063,7 @@
},
"post": {
"summary": "Create an issue",
- "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/github-ae@latest/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/github-ae@latest/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\nThis endpoint triggers [notifications](https://docs.github.com/github-ae@latest/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/github-ae@latest/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/github-ae@latest/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
@@ -209778,7 +209775,7 @@
},
"post": {
"summary": "Create an issue comment",
- "description": "This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/github-ae@latest/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/github-ae@latest/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
+ "description": "This endpoint triggers [notifications](https://docs.github.com/github-ae@latest/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/github-ae@latest/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/github-ae@latest/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
"tags": [
"issues"
],
diff --git a/lib/search/indexes/github-docs-3.0-cn-records.json.br b/lib/search/indexes/github-docs-3.0-cn-records.json.br
index 468128664c..a23bb743e6 100644
--- a/lib/search/indexes/github-docs-3.0-cn-records.json.br
+++ b/lib/search/indexes/github-docs-3.0-cn-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:9473aaeefe4d6e0501fcbd9e8cd73de140577f2e717bc6bb4ec7df415e19e836
-size 650826
+oid sha256:284e2310f5ea3e80bd5e11386a214bfaa351f14b6cd5d19ceaedc9e596cfed9d
+size 651801
diff --git a/lib/search/indexes/github-docs-3.0-cn.json.br b/lib/search/indexes/github-docs-3.0-cn.json.br
index 8f32eeda0c..aa5cea2680 100644
--- a/lib/search/indexes/github-docs-3.0-cn.json.br
+++ b/lib/search/indexes/github-docs-3.0-cn.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:2647c82c5668d2526bbd7cbf18aa6b108b74938258fc7a8376b7929ee098dde3
-size 1364826
+oid sha256:fd9e3dab547dfb8b916bca2aa652065b0abe54b9d9d438a8fd51437ac65b47ba
+size 1367087
diff --git a/lib/search/indexes/github-docs-3.0-en-records.json.br b/lib/search/indexes/github-docs-3.0-en-records.json.br
index 58d861a0fa..2243059e15 100644
--- a/lib/search/indexes/github-docs-3.0-en-records.json.br
+++ b/lib/search/indexes/github-docs-3.0-en-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:68ab4a5fb46792ff7b1cf121077a0348d03a82358122b83229048feed25ef6a5
-size 965728
+oid sha256:ae02c7fe62ffd750c7af187d19394948aad2a32a30ecfbe479521a829757fca0
+size 966876
diff --git a/lib/search/indexes/github-docs-3.0-en.json.br b/lib/search/indexes/github-docs-3.0-en.json.br
index 6b0a0b1604..fd36e0dc6a 100644
--- a/lib/search/indexes/github-docs-3.0-en.json.br
+++ b/lib/search/indexes/github-docs-3.0-en.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:e44faae7bbc26688911ce9d12192b036ab163b250aba3589781af966d520bcca
-size 3961288
+oid sha256:edce77d8545918d48608761c9fc485bb1583830ff1551200c4d8103e6348e089
+size 3965279
diff --git a/lib/search/indexes/github-docs-3.0-es-records.json.br b/lib/search/indexes/github-docs-3.0-es-records.json.br
index b38752f41c..911e60ea35 100644
--- a/lib/search/indexes/github-docs-3.0-es-records.json.br
+++ b/lib/search/indexes/github-docs-3.0-es-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:45642f4da9b27933768236ba2d4692f3325c8bd17db4a27e3c9ef864aba70783
-size 606057
+oid sha256:b27eed498387d38a7cdc55be915bf24bf3eb03a855f4f2ccf22eebd15f9ce5e5
+size 606807
diff --git a/lib/search/indexes/github-docs-3.0-es.json.br b/lib/search/indexes/github-docs-3.0-es.json.br
index 4640d43508..bc1996f6e9 100644
--- a/lib/search/indexes/github-docs-3.0-es.json.br
+++ b/lib/search/indexes/github-docs-3.0-es.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:c6552efbcb1f3540b5dbda9888598cbc7c8c1e03656b32684af3b25e7ba5429b
-size 2570514
+oid sha256:392c8529e2c8f1ecf80f504de15d9e815010e1c2f92138502f21899e1c760ad2
+size 2561474
diff --git a/lib/search/indexes/github-docs-3.0-ja-records.json.br b/lib/search/indexes/github-docs-3.0-ja-records.json.br
index 1f59ac84cb..8e7073cab9 100644
--- a/lib/search/indexes/github-docs-3.0-ja-records.json.br
+++ b/lib/search/indexes/github-docs-3.0-ja-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:393588d45818d8f8fdafb4533bf4f8924f916ed2d7cad0a1d19f5a42a00cb5f0
-size 669952
+oid sha256:6f9cbf7e403865cc08c2c98cd03d4f50b90988937a9d7ad4177a8f1a3aa6aaed
+size 670613
diff --git a/lib/search/indexes/github-docs-3.0-ja.json.br b/lib/search/indexes/github-docs-3.0-ja.json.br
index e621762b40..e9f632133e 100644
--- a/lib/search/indexes/github-docs-3.0-ja.json.br
+++ b/lib/search/indexes/github-docs-3.0-ja.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:1cf70313a22ff2b911f2bee3e76fc9c6d6d9102b59e832436b261907ba8e56c4
-size 3576179
+oid sha256:415ec882844877c6ce5922c46afa50425189b2e0db4ee52c89bd33a0b05d9f56
+size 3578306
diff --git a/lib/search/indexes/github-docs-3.0-pt-records.json.br b/lib/search/indexes/github-docs-3.0-pt-records.json.br
index e54dea23e1..b1c051ad9d 100644
--- a/lib/search/indexes/github-docs-3.0-pt-records.json.br
+++ b/lib/search/indexes/github-docs-3.0-pt-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:f1e5bb47a9c9bd07fc3cca112880ae95e2d1aca586f2ba536b9541b28086330d
-size 596241
+oid sha256:5e1bbe452ddc1b723a3163857ac7f348f58f7813dbee0f31f95127fde974ab56
+size 596731
diff --git a/lib/search/indexes/github-docs-3.0-pt.json.br b/lib/search/indexes/github-docs-3.0-pt.json.br
index efcbaeeadf..6b064dfd82 100644
--- a/lib/search/indexes/github-docs-3.0-pt.json.br
+++ b/lib/search/indexes/github-docs-3.0-pt.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:41f919f39a66e8b6a16b3839f6c03ae1fb393adfa8b78b06bf23f0a07683e2b7
-size 2456565
+oid sha256:8026fa6823602535a49fbf7ac761add2dac16e227403af868270f2410e4fd3ea
+size 2456148
diff --git a/lib/search/indexes/github-docs-3.1-cn-records.json.br b/lib/search/indexes/github-docs-3.1-cn-records.json.br
index 83c23a6dfd..7a0c63ca91 100644
--- a/lib/search/indexes/github-docs-3.1-cn-records.json.br
+++ b/lib/search/indexes/github-docs-3.1-cn-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:61eea70b3446016343ad6d69f36021d9002b77dea5f49e439a9667500941d39b
-size 665145
+oid sha256:961263562aab594e5fea1216ded9d8ec6ac0aeb6735b85f16f60440f5b6ba720
+size 666053
diff --git a/lib/search/indexes/github-docs-3.1-cn.json.br b/lib/search/indexes/github-docs-3.1-cn.json.br
index fe7cd5b308..bd374437e9 100644
--- a/lib/search/indexes/github-docs-3.1-cn.json.br
+++ b/lib/search/indexes/github-docs-3.1-cn.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:0169abffd0ceb7f12d9749b36e23935637a7a7778365d31863765207899cb47e
-size 1403514
+oid sha256:dfd322f22757ed1902539e5d6a116bef911ba108cb0e59ce8152e56e0aec689f
+size 1406321
diff --git a/lib/search/indexes/github-docs-3.1-en-records.json.br b/lib/search/indexes/github-docs-3.1-en-records.json.br
index 8536045f65..47f2d3c0a0 100644
--- a/lib/search/indexes/github-docs-3.1-en-records.json.br
+++ b/lib/search/indexes/github-docs-3.1-en-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:6ebb73e32b1d90b05e3e6d9e33132f33aa3fe021fe5819240850e0f8dbc9bf0e
-size 990663
+oid sha256:8bbf1859bdd143d4f707e3c31ab8367e29554850857f33b8bb2bf838782f90a1
+size 994912
diff --git a/lib/search/indexes/github-docs-3.1-en.json.br b/lib/search/indexes/github-docs-3.1-en.json.br
index 64e48c1ffd..fcede91dc4 100644
--- a/lib/search/indexes/github-docs-3.1-en.json.br
+++ b/lib/search/indexes/github-docs-3.1-en.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:8abd59d9ce15102610b26c6a24386eb404933e1159304e713f1754dcfa200fca
-size 4056823
+oid sha256:e425b6e1fffc38b0616cfef81a10659d2e84a6afaca7e1d5ca0a128c25130d7f
+size 4057834
diff --git a/lib/search/indexes/github-docs-3.1-es-records.json.br b/lib/search/indexes/github-docs-3.1-es-records.json.br
index 80cb251d7d..8e85b49cd9 100644
--- a/lib/search/indexes/github-docs-3.1-es-records.json.br
+++ b/lib/search/indexes/github-docs-3.1-es-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:690f0e4555b0fab6ab0dd3a6bab21ac54092adc59a677ada4711b4d2d3211227
-size 618791
+oid sha256:b77f0b0623d813d0636df9db46d40b4b953553e8d164956a7d9c2210428a7057
+size 619327
diff --git a/lib/search/indexes/github-docs-3.1-es.json.br b/lib/search/indexes/github-docs-3.1-es.json.br
index a1b47c331a..5a0b6b7340 100644
--- a/lib/search/indexes/github-docs-3.1-es.json.br
+++ b/lib/search/indexes/github-docs-3.1-es.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:19ff8ad238203c7dcd8517888a2be3f9f12432d9dd34c99d84d09be3662edf75
-size 2633203
+oid sha256:d494241f6e757fa85af674f1a52e7c82e3efa9312642f247a662b2e64e08b31b
+size 2623960
diff --git a/lib/search/indexes/github-docs-3.1-ja-records.json.br b/lib/search/indexes/github-docs-3.1-ja-records.json.br
index b72d729f1c..08beb015c2 100644
--- a/lib/search/indexes/github-docs-3.1-ja-records.json.br
+++ b/lib/search/indexes/github-docs-3.1-ja-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:8a14acfacb60daa1280e5ba6d908a1374a7afa1add9ac92664fa502751a45450
-size 684390
+oid sha256:51088bce022461ff17d7513267ed97a11f9f0d2930bbe9a8867f4d0d4e365aa7
+size 684945
diff --git a/lib/search/indexes/github-docs-3.1-ja.json.br b/lib/search/indexes/github-docs-3.1-ja.json.br
index 1e5bf80fd8..ee60ec24cd 100644
--- a/lib/search/indexes/github-docs-3.1-ja.json.br
+++ b/lib/search/indexes/github-docs-3.1-ja.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:c1a12c206662051f0d86581e017cf75b74ac5aca791786264a562748e1b60cea
-size 3656667
+oid sha256:0c18396d7d9a41f5b28ad9f582567b5998a7a9e8be7419eb0744be99d6735c4d
+size 3661220
diff --git a/lib/search/indexes/github-docs-3.1-pt-records.json.br b/lib/search/indexes/github-docs-3.1-pt-records.json.br
index eaa85206e7..fba79453d5 100644
--- a/lib/search/indexes/github-docs-3.1-pt-records.json.br
+++ b/lib/search/indexes/github-docs-3.1-pt-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:7c19af48ebfbe04601dec0e8acad99c1033ad114f633eefa6924e50e51677bf9
-size 608928
+oid sha256:430ecf42bd2c2694b137a1cc559a6011089538cd6df52b3fd718de7175b4a2eb
+size 609131
diff --git a/lib/search/indexes/github-docs-3.1-pt.json.br b/lib/search/indexes/github-docs-3.1-pt.json.br
index 08c5fe713d..cf1556c755 100644
--- a/lib/search/indexes/github-docs-3.1-pt.json.br
+++ b/lib/search/indexes/github-docs-3.1-pt.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:541b8864a3a718ef91b651e5655cd99bf011f78daff472131d8d37a46f0939e9
-size 2510335
+oid sha256:f7e952874e3e790b2197c6414d090fbc8455c3b7a598e8cfab607ee90db5902a
+size 2510096
diff --git a/lib/search/indexes/github-docs-3.2-cn-records.json.br b/lib/search/indexes/github-docs-3.2-cn-records.json.br
index de0c4689dd..80b7fe5cfb 100644
--- a/lib/search/indexes/github-docs-3.2-cn-records.json.br
+++ b/lib/search/indexes/github-docs-3.2-cn-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:4b99fc398ac3db3bd1bcb3c59ea0274157f8d28ac8e4f81846503bf94471be08
-size 679595
+oid sha256:29ff98dc6cbbb90803ee30c36b2c01f2902857acc5779092b95ce7b05038e2a4
+size 680532
diff --git a/lib/search/indexes/github-docs-3.2-cn.json.br b/lib/search/indexes/github-docs-3.2-cn.json.br
index f6639da269..38ad47642d 100644
--- a/lib/search/indexes/github-docs-3.2-cn.json.br
+++ b/lib/search/indexes/github-docs-3.2-cn.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:dafb05b2a37d35cc1389a2e5b93fc73280d5fad1545ab7c53a2c6e08faa2de9e
-size 1432486
+oid sha256:03d898d117a57936313e77a7a55918e051b7cc03dc135deb68d7e19ad606bf51
+size 1434349
diff --git a/lib/search/indexes/github-docs-3.2-en-records.json.br b/lib/search/indexes/github-docs-3.2-en-records.json.br
index 71dedb2f8d..802a418652 100644
--- a/lib/search/indexes/github-docs-3.2-en-records.json.br
+++ b/lib/search/indexes/github-docs-3.2-en-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:3f80433e661af0ebf072ded47645b0cd9b55fa36d9590d812def0b3899ec2535
-size 1027016
+oid sha256:53ea02905c70568d26fa1d7ae2b9f8dd36096fd67a4ea285844ebfdb55472dab
+size 1024350
diff --git a/lib/search/indexes/github-docs-3.2-en.json.br b/lib/search/indexes/github-docs-3.2-en.json.br
index 22c6cb8ca3..323fc0d44e 100644
--- a/lib/search/indexes/github-docs-3.2-en.json.br
+++ b/lib/search/indexes/github-docs-3.2-en.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:98ac58fed103645bb5472eba119698a18ae989303bc847789615c83681214aec
-size 4185140
+oid sha256:fbd4841c5624cd7aac05150ec37ead3133d38600acca13c4680fbe6d394f1cde
+size 4189425
diff --git a/lib/search/indexes/github-docs-3.2-es-records.json.br b/lib/search/indexes/github-docs-3.2-es-records.json.br
index 64dc754de3..f8224a3c9b 100644
--- a/lib/search/indexes/github-docs-3.2-es-records.json.br
+++ b/lib/search/indexes/github-docs-3.2-es-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:c3c1733979307c64d65349f28a7c71e70e31623f4cfc64132355aca0ba64598c
-size 631874
+oid sha256:dec86a801007b50e16a198793f45dd4c9842c419a3347882b84c15d7deb42c02
+size 632897
diff --git a/lib/search/indexes/github-docs-3.2-es.json.br b/lib/search/indexes/github-docs-3.2-es.json.br
index 6ae310ab95..2a5a461694 100644
--- a/lib/search/indexes/github-docs-3.2-es.json.br
+++ b/lib/search/indexes/github-docs-3.2-es.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:13df580d9e2bf3ba270b12cc1623344f552362309a157e2c73e71a0104d70491
-size 2692915
+oid sha256:98f774ab36aa5de7fb5323120b008d1b15b199a5d56e903983902cf20fe0fb72
+size 2683517
diff --git a/lib/search/indexes/github-docs-3.2-ja-records.json.br b/lib/search/indexes/github-docs-3.2-ja-records.json.br
index b486e026c0..113c940289 100644
--- a/lib/search/indexes/github-docs-3.2-ja-records.json.br
+++ b/lib/search/indexes/github-docs-3.2-ja-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:3159705632ce3e876e77d1849ce3b822cafa57d9d468cae7c8d0a2fe138b0707
-size 696981
+oid sha256:44c14ba35f8be27bf8128965c507b28bb640a77d4ede0c8b4148fbebc364cd31
+size 697732
diff --git a/lib/search/indexes/github-docs-3.2-ja.json.br b/lib/search/indexes/github-docs-3.2-ja.json.br
index 74b1e5b544..0fb71c11a2 100644
--- a/lib/search/indexes/github-docs-3.2-ja.json.br
+++ b/lib/search/indexes/github-docs-3.2-ja.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:819b14d03004dae1224936c155d393d4e40857166b99b12ceb45f9e62485e9e1
-size 3735177
+oid sha256:9aefe23354f40ee6b051b6fb2de6f511bcdc357ed1fa7245b0385d886eac4190
+size 3738229
diff --git a/lib/search/indexes/github-docs-3.2-pt-records.json.br b/lib/search/indexes/github-docs-3.2-pt-records.json.br
index bcb9809daf..63e7cd4b68 100644
--- a/lib/search/indexes/github-docs-3.2-pt-records.json.br
+++ b/lib/search/indexes/github-docs-3.2-pt-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:dbaf7bb28e683d18b705c00166c85f456b9372693add19d5591674f329881714
-size 621620
+oid sha256:7cb6d540d2ea5760cfdf285f9096eeae458ec1f57cc5052da99bae4b623164dd
+size 621836
diff --git a/lib/search/indexes/github-docs-3.2-pt.json.br b/lib/search/indexes/github-docs-3.2-pt.json.br
index a779ff30f9..21dabad6bf 100644
--- a/lib/search/indexes/github-docs-3.2-pt.json.br
+++ b/lib/search/indexes/github-docs-3.2-pt.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:08b77a3fca949993b9e0b9202bb1a897daad284f223182a149bcf95e1bcb4741
-size 2564698
+oid sha256:8b3fe0bb5266a1cf0a4e0e63e73b8bd1c1c63357a43c375a2a7700a5b26323ee
+size 2563977
diff --git a/lib/search/indexes/github-docs-3.3-cn-records.json.br b/lib/search/indexes/github-docs-3.3-cn-records.json.br
index c58b7c42bf..3eacf88bd1 100644
--- a/lib/search/indexes/github-docs-3.3-cn-records.json.br
+++ b/lib/search/indexes/github-docs-3.3-cn-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:f422034f834c84af924b41572ac4416dc2daaf71e92b1d5eafa6738c570e9c3d
-size 701776
+oid sha256:c58b51aa04b37cde74f139473f0882ad6bc833a21f7bbb3ca0ad927ea778d5da
+size 702431
diff --git a/lib/search/indexes/github-docs-3.3-cn.json.br b/lib/search/indexes/github-docs-3.3-cn.json.br
index 2f86c29215..442f4c1928 100644
--- a/lib/search/indexes/github-docs-3.3-cn.json.br
+++ b/lib/search/indexes/github-docs-3.3-cn.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:f205f4d39e149ab460e20ff6cca4b39bac6f597edd1cedc3306f941e7c91b2df
-size 1490598
+oid sha256:e229348b75dd60f52d6770e78929bed0c83fe8625fb6d762f41e10c5272e5910
+size 1492477
diff --git a/lib/search/indexes/github-docs-3.3-en-records.json.br b/lib/search/indexes/github-docs-3.3-en-records.json.br
index c08eb46b94..9c12139323 100644
--- a/lib/search/indexes/github-docs-3.3-en-records.json.br
+++ b/lib/search/indexes/github-docs-3.3-en-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:7714c1e04de41a7372e014c3ecc1674d447460978fee28123f4607400690e6df
-size 1057099
+oid sha256:ac48f80fbfd4a3c96be6b1cf4de7fca3e7d0a7602e08cc4ca8d7a44d6f84ea6a
+size 1058321
diff --git a/lib/search/indexes/github-docs-3.3-en.json.br b/lib/search/indexes/github-docs-3.3-en.json.br
index a77f92552a..715a874b13 100644
--- a/lib/search/indexes/github-docs-3.3-en.json.br
+++ b/lib/search/indexes/github-docs-3.3-en.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:38401688df0fdf831ff9d27337a984165f12ac1be85e18d73f5d9fa64e9d9295
-size 4287691
+oid sha256:432e5c3ce5aee49305535a76b0fd7925ac8ab660632ecdf980da19736b88e79a
+size 4289534
diff --git a/lib/search/indexes/github-docs-3.3-es-records.json.br b/lib/search/indexes/github-docs-3.3-es-records.json.br
index 226a1326c0..baa8e8ad40 100644
--- a/lib/search/indexes/github-docs-3.3-es-records.json.br
+++ b/lib/search/indexes/github-docs-3.3-es-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:d8dc92c457b418a7b15cf0e94549f68a78868a489bdf1b0d3a3202f3b7d6846f
-size 650438
+oid sha256:671d0d0310c27ad62eeeeb5ac7ce3d4024c107a182b5b35486f1a6e3a1334354
+size 651462
diff --git a/lib/search/indexes/github-docs-3.3-es.json.br b/lib/search/indexes/github-docs-3.3-es.json.br
index 19c529e56a..7a0ad081cc 100644
--- a/lib/search/indexes/github-docs-3.3-es.json.br
+++ b/lib/search/indexes/github-docs-3.3-es.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:9297c5ecbf5ba19cd51a984c8465600876f1ef13f890592316e8d9f5def312ae
-size 2792324
+oid sha256:e27ac5ea080125b1166edfc5eac437d3c1bbfe2e048f38ac55d26b76ddf7155e
+size 2782749
diff --git a/lib/search/indexes/github-docs-3.3-ja-records.json.br b/lib/search/indexes/github-docs-3.3-ja-records.json.br
index ea8b494d75..4caf82b5bb 100644
--- a/lib/search/indexes/github-docs-3.3-ja-records.json.br
+++ b/lib/search/indexes/github-docs-3.3-ja-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:37d2effd304b314717251410a62029f05922f4c6e0ace120d309b6120bed1823
-size 719707
+oid sha256:72d87e6318b1cb5e208e1a464cac6bf8644f07c36e084d63da4a0ca6465fc80f
+size 720580
diff --git a/lib/search/indexes/github-docs-3.3-ja.json.br b/lib/search/indexes/github-docs-3.3-ja.json.br
index cf2dd8211f..a66a2e3ef0 100644
--- a/lib/search/indexes/github-docs-3.3-ja.json.br
+++ b/lib/search/indexes/github-docs-3.3-ja.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:619c60cc84ff682b18390aef2f5f820469d2ce191111be5419cef78851512baa
-size 3859489
+oid sha256:2032f768056d6fb22dcfe083943150a907a6beb78587f67e1ef862fb5a0c1d67
+size 3864410
diff --git a/lib/search/indexes/github-docs-3.3-pt-records.json.br b/lib/search/indexes/github-docs-3.3-pt-records.json.br
index 283fa3f5f5..867a87f01e 100644
--- a/lib/search/indexes/github-docs-3.3-pt-records.json.br
+++ b/lib/search/indexes/github-docs-3.3-pt-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:a3659389af584590ebf3ab00cb587b4f20a97c35f6b6d83382ce198b5f2c3c48
-size 640079
+oid sha256:e256b8ed26c572607c4edb2e42cb421404dc0bee9f1e69ec226567c386336bd5
+size 640550
diff --git a/lib/search/indexes/github-docs-3.3-pt.json.br b/lib/search/indexes/github-docs-3.3-pt.json.br
index 3c8a2c0f86..e717fcbfe1 100644
--- a/lib/search/indexes/github-docs-3.3-pt.json.br
+++ b/lib/search/indexes/github-docs-3.3-pt.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:20813f73ccadb9d3857f53f10371929bd34576f75be514700bc5505eb8ce59fb
-size 2644391
+oid sha256:f6da09246a31e6e7b5490c0abcf66f267a2127adb641c90497948aea054ec9dd
+size 2643995
diff --git a/lib/search/indexes/github-docs-dotcom-cn-records.json.br b/lib/search/indexes/github-docs-dotcom-cn-records.json.br
index bb66f5718d..e908be53a6 100644
--- a/lib/search/indexes/github-docs-dotcom-cn-records.json.br
+++ b/lib/search/indexes/github-docs-dotcom-cn-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:be587e7f43f30f9dbc6f88ec99499a7d1247744afc8323c59477dfacfef31d5e
-size 901146
+oid sha256:67b775ba69f554319d019c3df9cfa5d9d093e2f4d2ddb7b1dc266c11120bbd40
+size 901604
diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br
index 83fa89357f..df313015eb 100644
--- a/lib/search/indexes/github-docs-dotcom-cn.json.br
+++ b/lib/search/indexes/github-docs-dotcom-cn.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:47b520c248a1e005cee43af7cf03b780228b371ce0be8681d282e513bf5132b4
-size 1660228
+oid sha256:6cac4a8027d0548a48c5ead525bc137ee6bb56bce230b2739e41093c3733225f
+size 1661906
diff --git a/lib/search/indexes/github-docs-dotcom-en-records.json.br b/lib/search/indexes/github-docs-dotcom-en-records.json.br
index 8325358cdf..f5bf3807e8 100644
--- a/lib/search/indexes/github-docs-dotcom-en-records.json.br
+++ b/lib/search/indexes/github-docs-dotcom-en-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:59687f56ddd974e51f1a9aa7c65179599a675ebe047cba187c44c94b4cc9826d
-size 1334735
+oid sha256:9eb5284c3a85a9baabe769b832b4216dcab7fd2f362a9f0659e741ee2ac69ee7
+size 1341949
diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br
index 7c7b26654e..b7619df92e 100644
--- a/lib/search/indexes/github-docs-dotcom-en.json.br
+++ b/lib/search/indexes/github-docs-dotcom-en.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:02c8eafb7beb2db93a96dbb5ab7f17d90669b6f78a188cd27ed69d6074f172ab
-size 5153593
+oid sha256:0135fe5d6b3d8346a736c344c6783891421663cde4f5710c5a4f6fa6bb4be66f
+size 5155619
diff --git a/lib/search/indexes/github-docs-dotcom-es-records.json.br b/lib/search/indexes/github-docs-dotcom-es-records.json.br
index 161683fd31..282ed6902b 100644
--- a/lib/search/indexes/github-docs-dotcom-es-records.json.br
+++ b/lib/search/indexes/github-docs-dotcom-es-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:44426f56107e77aa125eb719fb03adcee6a8ada978eaf166cc997f278af29d5d
-size 819388
+oid sha256:d52f8a82dba19d117224fc7a287ecb197c2ea8230a57045105682d7ebedaf776
+size 819297
diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br
index 4b90e71931..4bd2c9a523 100644
--- a/lib/search/indexes/github-docs-dotcom-es.json.br
+++ b/lib/search/indexes/github-docs-dotcom-es.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:1cb38a4933f46ac7abba720488a3413f4142a4fab0d2328a4b4f62dc1d1443e6
-size 3324107
+oid sha256:51ed4c0030927708b947879bdb49e00f5da2cd97a8cd61dd7aa3caaf78de28ce
+size 3320198
diff --git a/lib/search/indexes/github-docs-dotcom-ja-records.json.br b/lib/search/indexes/github-docs-dotcom-ja-records.json.br
index ecab919c05..55ae0447d1 100644
--- a/lib/search/indexes/github-docs-dotcom-ja-records.json.br
+++ b/lib/search/indexes/github-docs-dotcom-ja-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:e2349046c415694a6e146678832a78abad6395864a8005b2b15488078e3332f5
-size 919284
+oid sha256:e65632fa7799368c261ac864eb3e615ee2e095da8678107351e6fecdf4e63d17
+size 919287
diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br
index 1483de02de..49a24e5a93 100644
--- a/lib/search/indexes/github-docs-dotcom-ja.json.br
+++ b/lib/search/indexes/github-docs-dotcom-ja.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:533224a968c9c1bf575c7d2d36b8449dfea86da11b098f8d6f32f516b4eb28c3
-size 4715176
+oid sha256:557826d22bbc9c4b0cb00b0d62a5d48423f5c871743b04c873907cac36036e7d
+size 4715420
diff --git a/lib/search/indexes/github-docs-dotcom-pt-records.json.br b/lib/search/indexes/github-docs-dotcom-pt-records.json.br
index d264ebe66c..41a1fb3841 100644
--- a/lib/search/indexes/github-docs-dotcom-pt-records.json.br
+++ b/lib/search/indexes/github-docs-dotcom-pt-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:d7501a4165ed26e070cdd6c630047a52259286ca21de5d13311deb0c1720516b
-size 808578
+oid sha256:2e431b98594349e58348099fdba2ead54509597ead6ca450c60a6b4490cb84f1
+size 808337
diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br
index e8eaac9270..df38c26831 100644
--- a/lib/search/indexes/github-docs-dotcom-pt.json.br
+++ b/lib/search/indexes/github-docs-dotcom-pt.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:1ce6c9d51336fc065d25112abba2163cfe78e81f8796ea0c29aac4b7a3c61be3
-size 3175023
+oid sha256:57040da2e87bcb14565467b4f2e07ed18419219309f9406f5b932910cf758e78
+size 3168150
diff --git a/lib/search/indexes/github-docs-ghae-cn-records.json.br b/lib/search/indexes/github-docs-ghae-cn-records.json.br
index 1b6631cccc..894096591c 100644
--- a/lib/search/indexes/github-docs-ghae-cn-records.json.br
+++ b/lib/search/indexes/github-docs-ghae-cn-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:d030060b6ed7bacbf14a5d1a4ec86883af5878a1b299dd3d8684d0cc3961d1dd
-size 546698
+oid sha256:7df36077055799d913fed388005d8611f57869075f56016140894b934ec39f9a
+size 547902
diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br
index 3d257e18e9..1ad8cb812e 100644
--- a/lib/search/indexes/github-docs-ghae-cn.json.br
+++ b/lib/search/indexes/github-docs-ghae-cn.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:e9b3ca7cf35f4be1b7fe07bef59f3619d8a52c369c88e8ed784c2464768fa7c6
-size 1107707
+oid sha256:98f78aa61ffc198d0521e82f52ba7f7703bdd8567cf70489acab0dc70c864332
+size 1111544
diff --git a/lib/search/indexes/github-docs-ghae-en-records.json.br b/lib/search/indexes/github-docs-ghae-en-records.json.br
index ade869332f..0c676a39f2 100644
--- a/lib/search/indexes/github-docs-ghae-en-records.json.br
+++ b/lib/search/indexes/github-docs-ghae-en-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:a68223c563ad349b0f09c84d4257baa00b56110be5f6a3a8a17a7d0696e557f8
-size 842495
+oid sha256:921c5408e7648c41d7dd310731a469f405fd8ed0ecc745a8fe7029a527d2475d
+size 844007
diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br
index 757046a169..eca38cd715 100644
--- a/lib/search/indexes/github-docs-ghae-en.json.br
+++ b/lib/search/indexes/github-docs-ghae-en.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:77b8c2bef95f6478419f47215426cebeeffb5e3b47bf65681e03cb4c4ff90fe3
-size 3394869
+oid sha256:48c7bc5b51b2de557e85644aafba4d4fd7d293642b6131a67afb725c010079bf
+size 3397900
diff --git a/lib/search/indexes/github-docs-ghae-es-records.json.br b/lib/search/indexes/github-docs-ghae-es-records.json.br
index e9d0c046e9..4b9e3a3c0f 100644
--- a/lib/search/indexes/github-docs-ghae-es-records.json.br
+++ b/lib/search/indexes/github-docs-ghae-es-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:b2afa5a620e12b6c5b5f2415f2a5b4aed99f69d4f35dc9ceadfcbf19034684a7
-size 508564
+oid sha256:054f425bc793187faeca097255abd4f361ba5a88460ef33ecfb90499e6571cb0
+size 510116
diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br
index fca0c508ca..b9e3af8abb 100644
--- a/lib/search/indexes/github-docs-ghae-es.json.br
+++ b/lib/search/indexes/github-docs-ghae-es.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:09b67f23f2d81126daebca2316009aec532679ef4ea695c0ee5dc3b557257c31
-size 2090149
+oid sha256:fe838baa751ac5fd426c4952eeaefd69ae617551d4102e4cee83a0e04700cc55
+size 2093478
diff --git a/lib/search/indexes/github-docs-ghae-ja-records.json.br b/lib/search/indexes/github-docs-ghae-ja-records.json.br
index eb67ed6c67..e0e51555cd 100644
--- a/lib/search/indexes/github-docs-ghae-ja-records.json.br
+++ b/lib/search/indexes/github-docs-ghae-ja-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:ad1e2d7bc0583ff5df343d43107201197872b7457a25ac3ac660f07dbc61ea39
-size 559798
+oid sha256:25db4c28bb585365a357d7e228979ec61c92dda956751db8643a35119fe71244
+size 560931
diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br
index 4c5580a0de..d6faa14758 100644
--- a/lib/search/indexes/github-docs-ghae-ja.json.br
+++ b/lib/search/indexes/github-docs-ghae-ja.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:00bd09daf2ec3593b024353425366c4ca393d6e7ebf524c2949745e0119a2daf
-size 2891461
+oid sha256:6f6e0cb0322a40a8204a97dea0ebf8c810e1ea2f5f453ba94e2df6cbac1a5de1
+size 2896689
diff --git a/lib/search/indexes/github-docs-ghae-pt-records.json.br b/lib/search/indexes/github-docs-ghae-pt-records.json.br
index caae44dd27..e4b9546e6d 100644
--- a/lib/search/indexes/github-docs-ghae-pt-records.json.br
+++ b/lib/search/indexes/github-docs-ghae-pt-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:984aeccf336f2ccbffbe89f965e5f28130bb7eadf40713ec78553ce881ec5c17
-size 501097
+oid sha256:e62f8c1cb1e8f8d6d38baf0c0c45b3d547994d47809f482221aa973d202827b2
+size 502036
diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br
index 047731de9e..25f9f28876 100644
--- a/lib/search/indexes/github-docs-ghae-pt.json.br
+++ b/lib/search/indexes/github-docs-ghae-pt.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:2478cbd6f3a037e36e7ae7fb129a00f2bfb5b4f12133113cc51993da31269a4a
-size 1982097
+oid sha256:bf7cf4e5c45d1970a5800f7fdb370a9f906ac0d85ff79df3f9ccbf062f225932
+size 1984084
diff --git a/lib/search/indexes/github-docs-ghec-cn-records.json.br b/lib/search/indexes/github-docs-ghec-cn-records.json.br
index a1132c8fb3..5f3495f2f4 100644
--- a/lib/search/indexes/github-docs-ghec-cn-records.json.br
+++ b/lib/search/indexes/github-docs-ghec-cn-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:525801d8a8c39e2d64cefc0ab57c171c6374975eb4a0c37402fe0cca8f5812db
-size 822131
+oid sha256:f0bcda551d3da453b9934619f6f4b724fc9a6407a1d2ba86e6866b454e469661
+size 823005
diff --git a/lib/search/indexes/github-docs-ghec-cn.json.br b/lib/search/indexes/github-docs-ghec-cn.json.br
index 59d2a0598b..0572e451f8 100644
--- a/lib/search/indexes/github-docs-ghec-cn.json.br
+++ b/lib/search/indexes/github-docs-ghec-cn.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:db725bcafcd01a188e4cee1b77f19c45ae08276942cdd790e366f19ba1504f61
-size 1706635
+oid sha256:acc34064a5b8003129109f27efdf6e2c18ca0ab67c5e9d787e189feeac0bdb87
+size 1710403
diff --git a/lib/search/indexes/github-docs-ghec-en-records.json.br b/lib/search/indexes/github-docs-ghec-en-records.json.br
index 8451f93a8c..cbea68326c 100644
--- a/lib/search/indexes/github-docs-ghec-en-records.json.br
+++ b/lib/search/indexes/github-docs-ghec-en-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:81726667d626c73b28cd9968a416b42a1581d3fded035108e698256c36f9d832
-size 1210676
+oid sha256:7de57f73f0bbc063239e1872213ba5d66ccf337891a8e4728f10d22d2f092a38
+size 1212370
diff --git a/lib/search/indexes/github-docs-ghec-en.json.br b/lib/search/indexes/github-docs-ghec-en.json.br
index b6435f1235..ee91363ce8 100644
--- a/lib/search/indexes/github-docs-ghec-en.json.br
+++ b/lib/search/indexes/github-docs-ghec-en.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:7f792edb05b6f6507c241b363d484ef32805f079bd3827bf03eea3af103141d2
-size 4905479
+oid sha256:6a402e3ee34c1baba27892cd8e5f84d5bee8f66357968a441233ad6fa46a5dac
+size 4912416
diff --git a/lib/search/indexes/github-docs-ghec-es-records.json.br b/lib/search/indexes/github-docs-ghec-es-records.json.br
index f745504f4f..e111ecb3a3 100644
--- a/lib/search/indexes/github-docs-ghec-es-records.json.br
+++ b/lib/search/indexes/github-docs-ghec-es-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:2f6c1114291007817e8fe25249cb8a484f361bb61c8fad80bdba3000f46a89e7
-size 773025
+oid sha256:808b9e5cfb3601df566f880e4cb69e3b757a7c0a467352e457e220ca6aec8e48
+size 773026
diff --git a/lib/search/indexes/github-docs-ghec-es.json.br b/lib/search/indexes/github-docs-ghec-es.json.br
index 55af4636dd..103a41f8e0 100644
--- a/lib/search/indexes/github-docs-ghec-es.json.br
+++ b/lib/search/indexes/github-docs-ghec-es.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:092a1080a1ac9addf339f9b2dc2a18803aa09f7de08eb6d312226f6bcda8066c
-size 3287683
+oid sha256:f40ec9d95e1ea2059c55120e553e964c145a45c755f5a22e7fcc91d4d2a50db4
+size 3281910
diff --git a/lib/search/indexes/github-docs-ghec-ja-records.json.br b/lib/search/indexes/github-docs-ghec-ja-records.json.br
index 34a25db736..31fa118fbf 100644
--- a/lib/search/indexes/github-docs-ghec-ja-records.json.br
+++ b/lib/search/indexes/github-docs-ghec-ja-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:16d87ceab302f3c03b10badf27aa7748cbb30f34ed1da24954b8c096b47dfc2d
-size 845048
+oid sha256:a855e51caf02b7e76567868da1578bc5ce6b51f5bceedaa9be32cd560bfa2de3
+size 845268
diff --git a/lib/search/indexes/github-docs-ghec-ja.json.br b/lib/search/indexes/github-docs-ghec-ja.json.br
index 116fd94beb..6f6d582443 100644
--- a/lib/search/indexes/github-docs-ghec-ja.json.br
+++ b/lib/search/indexes/github-docs-ghec-ja.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:ae403af9e3458dfdee351304fe9211b5b1a591b3a46f694c29faa92dabadb563
-size 4553784
+oid sha256:0cf7eae77de9652819311678c21bbd9d53e776865af9d8fc7187299ad1857cf2
+size 4557954
diff --git a/lib/search/indexes/github-docs-ghec-pt-records.json.br b/lib/search/indexes/github-docs-ghec-pt-records.json.br
index 88106e9e49..cfba0abf60 100644
--- a/lib/search/indexes/github-docs-ghec-pt-records.json.br
+++ b/lib/search/indexes/github-docs-ghec-pt-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:77b9916eff7fc3a6d8b7572596f0c37d18f873211254f5d2d2a48fe19c6e9bb7
-size 761794
+oid sha256:24727e40a4c512acbc6df64bc593c3eae6557d2e495ba261fcc1de446930bb59
+size 761781
diff --git a/lib/search/indexes/github-docs-ghec-pt.json.br b/lib/search/indexes/github-docs-ghec-pt.json.br
index fccf19cc45..4de03dda56 100644
--- a/lib/search/indexes/github-docs-ghec-pt.json.br
+++ b/lib/search/indexes/github-docs-ghec-pt.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:3ee0a77ea88c41a9c04462b65fd17c53bda9de67a497d1554d66edb5b171883b
-size 3130558
+oid sha256:a44e93b7b9dfbdfd2d233491e9a65fd7cb2f4b39d67ab5f40b21d759c609d911
+size 3127502
diff --git a/lib/webhooks/static/ghes-3.4/cache_sync.synced.payload.json b/lib/webhooks/static/ghes-3.4/cache_sync.synced.payload.json
new file mode 100644
index 0000000000..6c71111595
--- /dev/null
+++ b/lib/webhooks/static/ghes-3.4/cache_sync.synced.payload.json
@@ -0,0 +1,132 @@
+{
+ "cache_location": "morocco",
+ "ref": "refs/heads/main",
+ "before": "0000000000000000000000000000000000000000",
+ "after": "de40facb99837f9ca38a0d399b0d20fe135510eb",
+ "repository": {
+ "id": 118,
+ "node_id": "MDEwOlJlcG9zaXRvcnkxMTg=",
+ "name": "Hello-World",
+ "full_name": "Codertocat/Hello-World",
+ "private": false,
+ "owner": {
+ "login": "Codertocat",
+ "id": 4,
+ "node_id": "MDQ6VXNlcjQ=",
+ "avatar_url": "https://octocoders.github.io/avatars/u/4?",
+ "gravatar_id": "",
+ "url": "https://octocoders.github.io/api/v3/users/Codertocat",
+ "html_url": "https://octocoders.github.io/Codertocat",
+ "followers_url": "https://octocoders.github.io/api/v3/users/Codertocat/followers",
+ "following_url": "https://octocoders.github.io/api/v3/users/Codertocat/following{/other_user}",
+ "gists_url": "https://octocoders.github.io/api/v3/users/Codertocat/gists{/gist_id}",
+ "starred_url": "https://octocoders.github.io/api/v3/users/Codertocat/starred{/owner}{/repo}",
+ "subscriptions_url": "https://octocoders.github.io/api/v3/users/Codertocat/subscriptions",
+ "organizations_url": "https://octocoders.github.io/api/v3/users/Codertocat/orgs",
+ "repos_url": "https://octocoders.github.io/api/v3/users/Codertocat/repos",
+ "events_url": "https://octocoders.github.io/api/v3/users/Codertocat/events{/privacy}",
+ "received_events_url": "https://octocoders.github.io/api/v3/users/Codertocat/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://octocoders.github.io/Codertocat/Hello-World",
+ "description": null,
+ "fork": false,
+ "url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World",
+ "forks_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/forks",
+ "keys_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/keys{/key_id}",
+ "collaborators_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/collaborators{/collaborator}",
+ "teams_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/teams",
+ "hooks_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/hooks",
+ "issue_events_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/issues/events{/number}",
+ "events_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/events",
+ "assignees_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/assignees{/user}",
+ "branches_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/branches{/branch}",
+ "tags_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/tags",
+ "blobs_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/git/blobs{/sha}",
+ "git_tags_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/git/tags{/sha}",
+ "git_refs_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/git/refs{/sha}",
+ "trees_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/git/trees{/sha}",
+ "statuses_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/statuses/{sha}",
+ "languages_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/languages",
+ "stargazers_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/stargazers",
+ "contributors_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/contributors",
+ "subscribers_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/subscribers",
+ "subscription_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/subscription",
+ "commits_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/commits{/sha}",
+ "git_commits_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/git/commits{/sha}",
+ "comments_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/comments{/number}",
+ "issue_comment_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/issues/comments{/number}",
+ "contents_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/contents/{+path}",
+ "compare_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/compare/{base}...{head}",
+ "merges_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/merges",
+ "archive_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/{archive_format}{/ref}",
+ "downloads_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/downloads",
+ "issues_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/issues{/number}",
+ "pulls_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/pulls{/number}",
+ "milestones_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/milestones{/number}",
+ "notifications_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/notifications{?since,all,participating}",
+ "labels_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/labels{/name}",
+ "releases_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/releases{/id}",
+ "deployments_url": "https://octocoders.github.io/api/v3/repos/Codertocat/Hello-World/deployments",
+ "created_at": "2019-05-15T19:37:07Z",
+ "updated_at": "2019-05-15T19:37:10Z",
+ "pushed_at": "2019-05-15T19:38:03Z",
+ "git_url": "git://octocoders.github.io/Codertocat/Hello-World.git",
+ "ssh_url": "git@octocoders.github.io:Codertocat/Hello-World.git",
+ "clone_url": "https://octocoders.github.io/Codertocat/Hello-World.git",
+ "svn_url": "https://octocoders.github.io/Codertocat/Hello-World",
+ "homepage": null,
+ "size": 0,
+ "stargazers_count": 0,
+ "watchers_count": 0,
+ "language": null,
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": true,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 2,
+ "license": null,
+ "forks": 0,
+ "open_issues": 2,
+ "watchers": 0,
+ "default_branch": "master"
+ },
+ "enterprise": {
+ "id": 1,
+ "slug": "github",
+ "name": "GitHub",
+ "node_id": "MDg6QnVzaW5lc3Mx",
+ "avatar_url": "https://octocoders.github.io/avatars/b/1?",
+ "description": null,
+ "website_url": null,
+ "html_url": "https://octocoders.github.io/businesses/github",
+ "created_at": "2019-05-14T19:31:12Z",
+ "updated_at": "2019-05-14T19:31:12Z"
+ },
+ "sender": {
+ "login": "github-enterprise",
+ "id": 4,
+ "node_id": "MDQ6VXNlcjQ=",
+ "avatar_url": "https://octocoders.github.io/avatars/u/4?",
+ "gravatar_id": "",
+ "url": "https://octocoders.github.io/api/v3/users/github-enterprise",
+ "html_url": "https://octocoders.github.io/github-enterprise",
+ "followers_url": "https://octocoders.github.io/api/v3/users/github-enterprise/followers",
+ "following_url": "https://octocoders.github.io/api/v3/users/github-enterprise/following{/other_user}",
+ "gists_url": "https://octocoders.github.io/api/v3/users/github-enterprise/gists{/gist_id}",
+ "starred_url": "https://octocoders.github.io/api/v3/users/github-enterprise/starred{/owner}{/repo}",
+ "subscriptions_url": "https://octocoders.github.io/api/v3/users/github-enterprise/subscriptions",
+ "organizations_url": "https://octocoders.github.io/api/v3/users/github-enterprise/orgs",
+ "repos_url": "https://octocoders.github.io/api/v3/users/github-enterprise/repos",
+ "events_url": "https://octocoders.github.io/api/v3/users/github-enterprise/events{/privacy}",
+ "received_events_url": "https://octocoders.github.io/api/v3/users/github-enterprise/received_events",
+ "type": "User",
+ "site_admin": false
+ }
+}
diff --git a/middleware/redirects/handle-redirects.js b/middleware/redirects/handle-redirects.js
index 68372ed495..308fd67e10 100644
--- a/middleware/redirects/handle-redirects.js
+++ b/middleware/redirects/handle-redirects.js
@@ -83,11 +83,27 @@ export default function handleRedirects(req, res, next) {
cacheControl(res)
}
+ const permanent = usePermanentRedirect(req)
+ return res.redirect(permanent ? 301 : 302, redirect)
+}
+
+function usePermanentRedirect(req) {
+ // If the redirect was to essentially swap `enterprise-server@latest`
+ // for `enterprise-server@3.x` then, we definitely don't want to
+ // do a permanent redirect.
+ // When this is the case, we don't want a permanent redirect because
+ // it could overzealously cache in the users' browser which could
+ // be bad when whatever "latest" means changes.
+ if (req.path.includes('/enterprise-server@latest')) return false
+
// If the redirect involved injecting a language prefix, then don't
// permanently redirect because that could overly cache in users'
// browsers if we some day want to make the language redirect
// depend on a cookie or 'Accept-Language' header.
- return res.redirect(pathLanguagePrefixed(req.path) ? 301 : 302, redirect)
+ if (pathLanguagePrefixed(req.path)) return true
+
+ // The default is to *not* do a permanent redirect.
+ return false
}
function removeQueryParams(redirect) {
diff --git a/middleware/render-page.js b/middleware/render-page.js
index d1442f5320..5e988c478d 100644
--- a/middleware/render-page.js
+++ b/middleware/render-page.js
@@ -1,5 +1,4 @@
import { get } from 'lodash-es'
-import QuickLRU from 'quick-lru'
import patterns from '../lib/patterns.js'
import getMiniTocItems from '../lib/get-mini-toc-items.js'
@@ -8,8 +7,8 @@ import statsd from '../lib/statsd.js'
import { isConnectionDropped } from './halt-on-dropped-connection.js'
import { nextApp, nextHandleRequest } from './next.js'
-function cacheOnReq(fn, minSize = 1024, lruMaxSize = 1000) {
- const cache = new QuickLRU({ maxSize: lruMaxSize })
+function cacheOnReq(fn) {
+ const cache = new Map()
return async function (req) {
const path = req.pagePath || req.path
@@ -32,7 +31,7 @@ function cacheOnReq(fn, minSize = 1024, lruMaxSize = 1000) {
}
const result = await fn(req)
- if (result && isCacheable && result.length > minSize) {
+ if (result && isCacheable) {
cache.set(path, result)
}
return result
@@ -78,10 +77,7 @@ async function buildMiniTocItems(req) {
return getMiniTocItems(context.renderedPage, page.miniTocMaxHeadingLevel)
}
-// The avergage size of buildRenderedPage() is about 22KB.
-// The median in 7KB. By only caching those larger than 10KB we avoid
-// putting too much into the cache.
-const wrapRenderedPage = cacheOnReq(buildRenderedPage, 10 * 1024)
+const wrapRenderedPage = cacheOnReq(buildRenderedPage)
export default async function renderPage(req, res, next) {
const { context } = req
diff --git a/middleware/search.js b/middleware/search.js
index c2285795d1..37939de906 100644
--- a/middleware/search.js
+++ b/middleware/search.js
@@ -37,7 +37,7 @@ router.get('/', async function postSearch(req, res, next) {
console.error(err)
// Only reply if the headers have not been sent and the request was not aborted...
if (!res.headersSent && !req.aborted) {
- return res.status(400).json([])
+ return res.status(400).json({ error: err.toString() })
}
}
})
diff --git a/package-lock.json b/package-lock.json
index 9e857b8278..3ad6bdec45 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -57,10 +57,9 @@
"mdast-util-to-string": "^3.1.0",
"morgan": "^1.10.0",
"next": "^11.1.3",
- "node-fetch": "^3.1.0",
+ "node-fetch": "^3.1.1",
"parse5": "^6.0.1",
"port-used": "^2.0.8",
- "quick-lru": "6.0.2",
"rate-limit-redis": "^2.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
@@ -117,7 +116,7 @@
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.31.1",
- "async": "^3.2.2",
+ "async": "^3.2.3",
"babel-loader": "^8.2.3",
"babel-plugin-styled-components": "^2.0.2",
"babel-preset-env": "^1.7.0",
@@ -158,7 +157,7 @@
"mkdirp": "^1.0.4",
"mock-express-response": "^0.3.0",
"mockdate": "^3.0.5",
- "nock": "^13.2.1",
+ "nock": "^13.2.2",
"nodemon": "^2.0.15",
"npm-merge-driver-install": "^2.0.2",
"object-hash": "^2.2.0",
@@ -5000,9 +4999,9 @@
}
},
"node_modules/async": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/async/-/async-3.2.2.tgz",
- "integrity": "sha512-H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g==",
+ "version": "3.2.3",
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz",
+ "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==",
"dev": true
},
"node_modules/async-limiter": {
@@ -9583,9 +9582,9 @@
}
},
"node_modules/fetch-blob": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.1.2.tgz",
- "integrity": "sha512-hunJbvy/6OLjCD0uuhLdp0mMPzP/yd2ssd1t2FCJsaA7wkWhpbp9xfuNVpv7Ll4jFhzp6T4LAupSiV9uOeg0VQ==",
+ "version": "3.1.4",
+ "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.1.4.tgz",
+ "integrity": "sha512-Eq5Xv5+VlSrYWEqKrusxY1C3Hm/hjeAsCGVG3ft7pZahlUAChpGZT/Ms1WmSLnEAisEXszjzu/s+ce6HZB2VHA==",
"funding": [
{
"type": "github",
@@ -9597,6 +9596,7 @@
}
],
"dependencies": {
+ "node-domexception": "^1.0.0",
"web-streams-polyfill": "^3.0.3"
},
"engines": {
@@ -15889,9 +15889,9 @@
}
},
"node_modules/nock": {
- "version": "13.2.1",
- "resolved": "https://registry.npmjs.org/nock/-/nock-13.2.1.tgz",
- "integrity": "sha512-CoHAabbqq/xZEknubuyQMjq6Lfi5b7RtK6SoNK6m40lebGp3yiMagWtIoYaw2s9sISD7wPuCfwFpivVHX/35RA==",
+ "version": "13.2.2",
+ "resolved": "https://registry.npmjs.org/nock/-/nock-13.2.2.tgz",
+ "integrity": "sha512-PcBHuvl9i6zfaJ50A7LS55oU+nFLv8htXIhffJO+FxyfibdZ4jEvd9kTuvkrJireBFIGMZ+oUIRpMK5gU9h//g==",
"dev": true,
"dependencies": {
"debug": "^4.1.0",
@@ -15903,13 +15903,31 @@
"node": ">= 10.13"
}
},
+ "node_modules/node-domexception": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz",
+ "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/jimmywarting"
+ },
+ {
+ "type": "github",
+ "url": "https://paypal.me/jimmywarting"
+ }
+ ],
+ "engines": {
+ "node": ">=10.5.0"
+ }
+ },
"node_modules/node-fetch": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.1.0.tgz",
- "integrity": "sha512-QU0WbIfMUjd5+MUzQOYhenAazakV7Irh1SGkWCsRzBwvm4fAhzEUaHMJ6QLP7gWT6WO9/oH2zhKMMGMuIrDyKw==",
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.1.1.tgz",
+ "integrity": "sha512-SMk+vKgU77PYotRdWzqZGTZeuFKlsJ0hu4KPviQKkfY+N3vn2MIzr0rvpnYpR8MtB3IEuhlEcuOLbGvLRlA+yg==",
"dependencies": {
"data-uri-to-buffer": "^4.0.0",
- "fetch-blob": "^3.1.2",
+ "fetch-blob": "^3.1.3",
"formdata-polyfill": "^4.0.10"
},
"engines": {
@@ -18242,17 +18260,6 @@
}
]
},
- "node_modules/quick-lru": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-6.0.2.tgz",
- "integrity": "sha512-H5ZVbbMzZEl+wEwiMP3v/b7ji+GrM3MRiy62LJbpI+F5+9RNcSKrjz7T0jIJVrlMfMxr7ZG0EGswJiABt75LDg==",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/random-bytes": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz",
@@ -27005,9 +27012,9 @@
"dev": true
},
"async": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/async/-/async-3.2.2.tgz",
- "integrity": "sha512-H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g==",
+ "version": "3.2.3",
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz",
+ "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==",
"dev": true
},
"async-limiter": {
@@ -30688,10 +30695,11 @@
}
},
"fetch-blob": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.1.2.tgz",
- "integrity": "sha512-hunJbvy/6OLjCD0uuhLdp0mMPzP/yd2ssd1t2FCJsaA7wkWhpbp9xfuNVpv7Ll4jFhzp6T4LAupSiV9uOeg0VQ==",
+ "version": "3.1.4",
+ "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.1.4.tgz",
+ "integrity": "sha512-Eq5Xv5+VlSrYWEqKrusxY1C3Hm/hjeAsCGVG3ft7pZahlUAChpGZT/Ms1WmSLnEAisEXszjzu/s+ce6HZB2VHA==",
"requires": {
+ "node-domexception": "^1.0.0",
"web-streams-polyfill": "^3.0.3"
}
},
@@ -35355,9 +35363,9 @@
}
},
"nock": {
- "version": "13.2.1",
- "resolved": "https://registry.npmjs.org/nock/-/nock-13.2.1.tgz",
- "integrity": "sha512-CoHAabbqq/xZEknubuyQMjq6Lfi5b7RtK6SoNK6m40lebGp3yiMagWtIoYaw2s9sISD7wPuCfwFpivVHX/35RA==",
+ "version": "13.2.2",
+ "resolved": "https://registry.npmjs.org/nock/-/nock-13.2.2.tgz",
+ "integrity": "sha512-PcBHuvl9i6zfaJ50A7LS55oU+nFLv8htXIhffJO+FxyfibdZ4jEvd9kTuvkrJireBFIGMZ+oUIRpMK5gU9h//g==",
"dev": true,
"requires": {
"debug": "^4.1.0",
@@ -35366,13 +35374,18 @@
"propagate": "^2.0.0"
}
},
+ "node-domexception": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz",
+ "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ=="
+ },
"node-fetch": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.1.0.tgz",
- "integrity": "sha512-QU0WbIfMUjd5+MUzQOYhenAazakV7Irh1SGkWCsRzBwvm4fAhzEUaHMJ6QLP7gWT6WO9/oH2zhKMMGMuIrDyKw==",
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.1.1.tgz",
+ "integrity": "sha512-SMk+vKgU77PYotRdWzqZGTZeuFKlsJ0hu4KPviQKkfY+N3vn2MIzr0rvpnYpR8MtB3IEuhlEcuOLbGvLRlA+yg==",
"requires": {
"data-uri-to-buffer": "^4.0.0",
- "fetch-blob": "^3.1.2",
+ "fetch-blob": "^3.1.3",
"formdata-polyfill": "^4.0.10"
},
"dependencies": {
@@ -37225,11 +37238,6 @@
"integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
"dev": true
},
- "quick-lru": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-6.0.2.tgz",
- "integrity": "sha512-H5ZVbbMzZEl+wEwiMP3v/b7ji+GrM3MRiy62LJbpI+F5+9RNcSKrjz7T0jIJVrlMfMxr7ZG0EGswJiABt75LDg=="
- },
"random-bytes": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz",
diff --git a/package.json b/package.json
index 9f1cecf5f0..2bbd537a7f 100644
--- a/package.json
+++ b/package.json
@@ -59,10 +59,9 @@
"mdast-util-to-string": "^3.1.0",
"morgan": "^1.10.0",
"next": "^11.1.3",
- "node-fetch": "^3.1.0",
+ "node-fetch": "^3.1.1",
"parse5": "^6.0.1",
"port-used": "^2.0.8",
- "quick-lru": "6.0.2",
"rate-limit-redis": "^2.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
@@ -119,7 +118,7 @@
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.31.1",
- "async": "^3.2.2",
+ "async": "^3.2.3",
"babel-loader": "^8.2.3",
"babel-plugin-styled-components": "^2.0.2",
"babel-preset-env": "^1.7.0",
@@ -160,7 +159,7 @@
"mkdirp": "^1.0.4",
"mock-express-response": "^0.3.0",
"mockdate": "^3.0.5",
- "nock": "^13.2.1",
+ "nock": "^13.2.2",
"nodemon": "^2.0.15",
"npm-merge-driver-install": "^2.0.2",
"object-hash": "^2.2.0",
diff --git a/script/rest/utils/operation.js b/script/rest/utils/operation.js
index 6c01fbf519..218c554d13 100644
--- a/script/rest/utils/operation.js
+++ b/script/rest/utils/operation.js
@@ -117,7 +117,7 @@ export default class Operation {
const rawResponse = rawResponses[responseCode]
const httpStatusCode = responseCode
const httpStatusMessage = httpStatusCodes.getMessage(Number(responseCode))
- const responseDescription = rawResponse.description
+ const responseDescription = await renderContent(rawResponse.description)
const cleanResponses = []
diff --git a/staging-azure-deploy-template.json b/staging-azure-deploy-template.json
new file mode 100644
index 0000000000..127f9c58a2
--- /dev/null
+++ b/staging-azure-deploy-template.json
@@ -0,0 +1,111 @@
+{
+ "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0",
+ "parameters": {
+ "appName": {
+ "type": "String"
+ },
+ "location": {
+ "type": "String"
+ },
+ "linuxFxVersion": {
+ "type": "String"
+ },
+ "dockerRegistryUrl": {
+ "type": "String"
+ },
+ "dockerRegistryUsername": {
+ "type": "String"
+ },
+ "dockerRegistryPassword": {
+ "type": "SecureString"
+ }
+ },
+ "variables": {
+ "appServicePlanName": "[concat('ASP-', parameters('appName'))]"
+ },
+ "resources": [
+ {
+
+ "type": "Microsoft.Web/serverfarms",
+ "apiVersion": "2021-02-01",
+ "name": "[variables('appServicePlanName')]",
+ "location": "[parameters('location')]",
+ "sku": {
+ "name": "B2"
+ },
+ "kind": "linux",
+ "properties": {
+ "reserved": true
+ }
+ },
+ {
+ "type": "Microsoft.Web/sites",
+ "apiVersion": "2018-11-01",
+ "name": "[parameters('appName')]",
+ "location": "[parameters('location')]",
+ "dependsOn": [
+ "[resourceId('Microsoft.Web/serverfarms', variables('appServicePlanName'))]"
+ ],
+ "tags": {},
+ "properties": {
+ "name": "[parameters('appName')]",
+ "siteConfig": {
+ "appSettings": [
+ {
+ "name": "DOCKER_REGISTRY_SERVER_URL",
+ "value": "[parameters('dockerRegistryUrl')]"
+ },
+ {
+ "name": "DOCKER_REGISTRY_SERVER_USERNAME",
+ "value": "[parameters('dockerRegistryUsername')]"
+ },
+ {
+ "name": "DOCKER_REGISTRY_SERVER_PASSWORD",
+ "value": "[parameters('dockerRegistryPassword')]"
+ },
+ {
+ "name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE",
+ "value": "false"
+ },
+ {
+ "name": "NODE_ENV",
+ "value": "production"
+ },
+ {
+ "name": "PORT",
+ "value": "4000"
+ },
+ {
+ "name": "DEPLOYMENT_ENV",
+ "value": "azure"
+ },
+ {
+ "name": "WEB_CONCURRENCY",
+ "value": "1"
+ },
+ {
+ "name": "ENABLED_LANGUAGES",
+ "value": "en,ja"
+ }
+ ],
+ "linuxFxVersion": "[parameters('linuxFxVersion')]",
+ "appCommandLine": "",
+ "alwaysOn": false,
+ "numberOfWorkers": 1,
+ "healthCheckPath": "/healthz",
+ "httpLoggingEnabled": true,
+ "logsDirectorySizeLimit": 35
+ },
+ "serverFarmId": "[concat('/subscriptions/', subscription().id, '/resourcegroups/', resourceGroup().name, '/providers/Microsoft.Web/serverfarms/', variables('appServicePlanName'))]",
+ "clientAffinityEnabled": false
+ }
+ }
+ ],
+ "outputs": {
+ "defaultHostName": {
+ "type": "string",
+ "value": "[concat('https://', parameters('appName'), '.azurewebsites.net')]"
+ }
+ }
+}
diff --git a/stylesheets/utilities.scss b/stylesheets/utilities.scss
index a949a2fec4..d5d31939a5 100644
--- a/stylesheets/utilities.scss
+++ b/stylesheets/utilities.scss
@@ -94,3 +94,14 @@
position: absolute !important;
width: 1px;
}
+
+/* Screen Reader Only
+------------------------------------------------------------------------------*/
+.sr-only {
+ position: absolute;
+ left: -10000px;
+ top: auto;
+ width: 1px;
+ height: 1px;
+ overflow: hidden;
+}
diff --git a/tests/rendering/server.js b/tests/rendering/server.js
index e549fde9d4..7153d97743 100644
--- a/tests/rendering/server.js
+++ b/tests/rendering/server.js
@@ -490,9 +490,11 @@ describe('server', () => {
test('dotcom articles on dotcom have Enterprise Admin links with latest GHE version', async () => {
const $ = await getDOM('/en/articles/setting-up-a-trial-of-github-enterprise-server')
+ // Note any links that might expressed in Markdown as '.../enterprise-server@latest/...'
+ // becomes '.../enterprise-server@/...' when rendered out.
expect(
$(
- `a[href="/en/enterprise-server@latest/admin/installation/setting-up-a-github-enterprise-server-instance"]`
+ `a[href="/en/enterprise-server@${enterpriseServerReleases.latest}/admin/installation/setting-up-a-github-enterprise-server-instance"]`
).length
).toBe(2)
})
diff --git a/tests/routing/redirects.js b/tests/routing/redirects.js
index bc90022047..23dd36b503 100644
--- a/tests/routing/redirects.js
+++ b/tests/routing/redirects.js
@@ -97,7 +97,7 @@ describe('redirects', () => {
})
test('do not work on other paths that include "search"', async () => {
- const reqPath = `/en/enterprise-server@${enterpriseServerReleases.latest}/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom`
+ const reqPath = `/en/enterprise-server@${enterpriseServerReleases.latest}/admin/configuration/configuring-github-connect/enabling-unified-search-for-your-enterprise`
const res = await get(reqPath)
expect(res.statusCode).toBe(200)
})
@@ -201,7 +201,7 @@ describe('redirects', () => {
test('hardcoded @latest redirects to latest version', async () => {
const res = await get('/en/enterprise-server@latest')
- expect(res.statusCode).toBe(301)
+ expect(res.statusCode).toBe(302)
expect(res.headers.location).toBe(enterpriseHome)
})
})
diff --git a/translations/es-ES/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-your-tab-size-rendering-preference.md b/translations/es-ES/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-your-tab-size-rendering-preference.md
index 89530122ee..f57df57ad7 100644
--- a/translations/es-ES/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-your-tab-size-rendering-preference.md
+++ b/translations/es-ES/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-your-tab-size-rendering-preference.md
@@ -3,7 +3,7 @@ title: Managing your tab size rendering preference
intro: You can manage the number of spaces a tab is equal to for your user account.
versions:
fpt: '*'
- ghae: ghae-issue-5083
+ ghae: issue-5083
ghes: '>=3.4'
ghec: '*'
topics:
diff --git a/translations/es-ES/content/actions/creating-actions/about-custom-actions.md b/translations/es-ES/content/actions/creating-actions/about-custom-actions.md
index ebc4459588..66cf09edae 100644
--- a/translations/es-ES/content/actions/creating-actions/about-custom-actions.md
+++ b/translations/es-ES/content/actions/creating-actions/about-custom-actions.md
@@ -26,7 +26,7 @@ topics:
Puedes crear acciones por medio de a escritura de un código personalizado que interactúe con tu repositorio de la manera que desees, incluida la integración con las API de {% data variables.product.prodname_dotcom %} y cualquier API de terceros disponible públicamente. Por ejemplo, una acción puede publicar módulos npm, enviar alertas por SMS cuando se crean propuestas urgentes o implementar un código listo para producción.
{% ifversion fpt or ghec %}
-Puedes escribir tus propias acciones para usar en tu flujo de trabajo o compartir las acciones que crees con la comunidad {% data variables.product.prodname_dotcom %}. Para compartir las acciones que creaste, tu repositorio debe ser público.
+Puedes escribir tus propias acciones para usar en tu flujo de trabajo o compartir las acciones que crees con la comunidad {% data variables.product.prodname_dotcom %}. Para compartir las acciones que creaste con todos, tu repositorio debe ser público. {% if internal-actions %}Para compartir las acciones únicamente con tu empresa, tu repositorio debe ser interno.{% endif %}
{% endif %}
Las acciones pueden ejecutarse directamente en una máquina o en un contenedor Docker. Puedes definir las entradas, salidas y variables de entorno de una acción.
@@ -69,7 +69,10 @@ Si estás desarrollando una acción para que otras personas la utilicen, te reco
Con el almacenamiento de una acción en su propio repositorio es más fácil para la comunidad {% data variables.product.prodname_dotcom %} descubrir la acción, reduce el alcance de la base de código para que los desarrolladores solucionen problemas y extiendan la acción, y desacopla el control de versiones de otro código de aplicación.
{% endif %}
-{% ifversion fpt or ghec %}Si estás creando una acción que no piensas poner disponible públicamente, puedes {% else %} puedes {% endif %} almacenar los archivos de dicha acción en cualquier ubicación de tu repositorio. Si tienes la intención de combinar la acción, el flujo de trabajo y el código de aplicación en un único repositorio, es recomendable que almacenes las acciones en el directorio `.github`. Por ejemplo, `.github/actions/action-a` y `.github/actions/action-b`.
+{% data reusables.actions.internal-actions-summary %}
+
+{% ifversion fpt or ghec %}Si estás creando una acción que no piensas poner disponible para otros, puedes {% else %} Puedes {% endif %} almacenar los archivos de dicha acción en cualquier ubicación de tu repositorio. Si tienes la intención de combinar la acción, el flujo de trabajo y el código de aplicación en un único repositorio, es recomendable que almacenes las acciones en el directorio `.github`. Por ejemplo, `.github/actions/action-a` y `.github/actions/action-b`.
+
## Compatibilidad con {% data variables.product.prodname_ghe_server %}
diff --git a/translations/es-ES/content/actions/creating-actions/index.md b/translations/es-ES/content/actions/creating-actions/index.md
index e74a204497..3a26e16717 100644
--- a/translations/es-ES/content/actions/creating-actions/index.md
+++ b/translations/es-ES/content/actions/creating-actions/index.md
@@ -21,6 +21,7 @@ children:
- /dockerfile-support-for-github-actions
- /setting-exit-codes-for-actions
- /publishing-actions-in-github-marketplace
+ - /sharing-actions-and-workflows-with-your-enterprise
- /releasing-and-maintaining-actions
- /developing-a-third-party-cli-action
---
diff --git a/translations/es-ES/content/actions/creating-actions/releasing-and-maintaining-actions.md b/translations/es-ES/content/actions/creating-actions/releasing-and-maintaining-actions.md
index b3a364d6ae..87a1a0caab 100644
--- a/translations/es-ES/content/actions/creating-actions/releasing-and-maintaining-actions.md
+++ b/translations/es-ES/content/actions/creating-actions/releasing-and-maintaining-actions.md
@@ -1,6 +1,6 @@
---
title: Releasing and maintaining actions
-shortTitle: Releasing and maintaining actions
+shortTitle: Lanzar y mantener las acciones
intro: You can leverage automation and open source best practices to release and maintain actions.
type: tutorial
topics:
@@ -70,7 +70,7 @@ Here is an example process that you can follow to automatically run tests, creat
* When a release is published or edited, your release workflow will automatically take care of compilation and adjusting tags.
- * We recommend creating releases using semantically versioned tags – for example, `v1.1.3` – and keeping major (`v1`) and minor (`v1.1`) tags current to the latest appropriate commit. For more information, see "[About custom actions](/actions/creating-actions/about-custom-actions#using-release-management-for-actions)" and "[About semantic versioning](https://docs.npmjs.com/about-semantic-versioning).
+ * We recommend creating releases using semantically versioned tags – for example, `v1.1.3` – and keeping major (`v1`) and minor (`v1.1`) tags current to the latest appropriate commit. Para obtener más información, consulta la sección "[Acerca de las acciones personalizadas](/actions/creating-actions/about-custom-actions#using-release-management-for-actions)" y "[Acerca del versionamiento semántico](https://docs.npmjs.com/about-semantic-versioning).
### Resultados
diff --git a/translations/es-ES/content/actions/creating-actions/sharing-actions-and-workflows-with-your-enterprise.md b/translations/es-ES/content/actions/creating-actions/sharing-actions-and-workflows-with-your-enterprise.md
new file mode 100644
index 0000000000..a981350d75
--- /dev/null
+++ b/translations/es-ES/content/actions/creating-actions/sharing-actions-and-workflows-with-your-enterprise.md
@@ -0,0 +1,39 @@
+---
+title: Sharing actions and workflows with your enterprise
+intro: You can share an action or workflow with your enterprise without publishing the action or workflow publicly.
+versions:
+ feature: internal-actions
+type: tutorial
+topics:
+ - Actions
+ - Action development
+shortTitle: Share with your enterprise
+---
+
+{% note %}
+
+**Note:** Allowing workflows to access actions in internal repositories is currently in beta and subject to change.
+
+{% endnote %}
+
+## About {% data variables.product.prodname_actions %} access to internal repositories
+
+Si tu organización le pertenece a una cuenta empresarial, puedes compartir las acciones y flujos de trabajo dentro de tu empresa, sin publicar la acción o flujo de trabajo al público en general, si permites que los flujos de trabajo de {% data variables.product.prodname_actions %} accedan a un repositorio interno que contenga dicha acción o flujo de trabajo.
+
+Any actions or workflows stored in the internal repository can be used in workflows defined in other private and internal repositories owned by the same organization, or by any organization owned by the enterprise. Actions and workflows stored in internal repositories cannot be used in public repositories.
+
+{% warning %}
+
+**Advertencia**: {% data reusables.actions.outside-collaborators-internal-actions %}
+
+{% endwarning %}
+
+## Compartir acciones y flujos de trabajo con tu empresa
+
+1. Store the action or workflow in an internal repository. Para obtener más información, consulta la sección "[Acerca de los repositorios](/repositories/creating-and-managing-repositories/about-repositories#about-internal-repositories)".
+1. Configure the repository to allow access to workflows in other private and internal repositories. Para obtener más información, consulta la sección "[Administrar la configuración de {% data variables.product.prodname_actions %} en un repositorio](/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#allowing-access-to-components-in-an-internal-repository)".
+
+## Leer más
+
+- "[Acerca de las cuentas de empresa](/admin/overview/about-enterprise-accounts)"
+- "[Reusing workflows](/actions/using-workflows/reusing-workflows)"
diff --git a/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-amazon-elastic-container-service.md b/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-amazon-elastic-container-service.md
index b2cb9cdda6..0ee8975352 100644
--- a/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-amazon-elastic-container-service.md
+++ b/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-amazon-elastic-container-service.md
@@ -30,7 +30,7 @@ En cada subida nueva a `main` en tu repositorio de {% data variables.product.com
{% note %}
-**Note**: {% data reusables.actions.about-oidc-short-overview %} and ["Configuring OpenID Connect in Amazon Web Services"](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services).
+**Nota**: {% data reusables.actions.about-oidc-short-overview %} y ["Configurar OpenID Connect en Amazon Web Services"](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services).
{% endnote %}
diff --git a/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-docker-to-azure-app-service.md b/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-docker-to-azure-app-service.md
index ca1ff612d6..3810a8b2fe 100644
--- a/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-docker-to-azure-app-service.md
+++ b/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-docker-to-azure-app-service.md
@@ -25,7 +25,7 @@ This guide explains how to use {% data variables.product.prodname_actions %} to
{% note %}
-**Note**: {% data reusables.actions.about-oidc-short-overview %} and "[Configuring OpenID Connect in Azure](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)."
+**Nota**: {% data reusables.actions.about-oidc-short-overview %} y "[Configurar OpenID Connect en Azure](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)".
{% endnote %}
@@ -124,19 +124,21 @@ jobs:
tags: ghcr.io/{% raw %}${{ env.REPO }}{% endraw %}:{% raw %}${{ github.sha }}{% endraw %}
file: ./Dockerfile
- deploy:
- runs-on: ubuntu-latest
- needs: build
- environment:
- name: 'production'
- url: {% raw %}${{ steps.deploy-to-webapp.outputs.webapp-url }}{% endraw %}
+ deploy:
+ runs-on: ubuntu-latest
- steps:
- - name: Lowercase the repo name
- run: echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
+ needs: build
- - name: Deploy to Azure Web App
- id: deploy-to-webapp
+ environment:
+ name: 'production'
+ url: {% raw %}${{ steps.deploy-to-webapp.outputs.webapp-url }}{% endraw %}
+
+ steps:
+ - name: Lowercase the repo name
+ run: echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
+
+ - name: Deploy to Azure Web App
+ id: deploy-to-webapp
uses: azure/webapps-deploy@0b651ed7546ecfc75024011f76944cb9b381ef1e
with:
app-name: {% raw %}${{ env.AZURE_WEBAPP_NAME }}{% endraw %}
@@ -150,4 +152,4 @@ Los siguientes recursos también pueden ser útiles:
* Para encontrar el flujo de trabajo inicial original, consulta el archivo [`azure-container-webapp.yml`](https://github.com/actions/starter-workflows/blob/main/deployments/azure-container-webapp.yml) en el repositorio `starter-workflows` de {% data variables.product.prodname_actions %}.
* La acción que se utilizó para desplegar la app web es la acción oficial [`Azure/webapps-deploy`](https://github.com/Azure/webapps-deploy) de Azure.
-* For more examples of GitHub Action workflows that deploy to Azure, see the [actions-workflow-samples](https://github.com/Azure/actions-workflow-samples) repository.
+* Para encontrar más ejemplos de flujos de trabajo de GitHub Actions que desplieguen a Azure, consulta el repositorio [actions-workflow-samples](https://github.com/Azure/actions-workflow-samples).
diff --git a/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-net-to-azure-app-service.md b/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-net-to-azure-app-service.md
index 3ac6ae987c..bc77c4ab72 100644
--- a/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-net-to-azure-app-service.md
+++ b/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-net-to-azure-app-service.md
@@ -24,7 +24,7 @@ This guide explains how to use {% data variables.product.prodname_actions %} to
{% note %}
-**Note**: {% data reusables.actions.about-oidc-short-overview %} and "[Configuring OpenID Connect in Azure](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)."
+**Nota**: {% data reusables.actions.about-oidc-short-overview %} y "[Configurar OpenID Connect en Azure](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)".
{% endnote %}
@@ -141,4 +141,4 @@ Los siguientes recursos también pueden ser útiles:
* Para encontrar el flujo de trabajo inicial original, consulta el archivo [`azure-webapps-dotnet-core.yml`](https://github.com/actions/starter-workflows/blob/main/deployments/azure-webapps-dotnet-core.yml) en el repositorio `starter-workflows` de {% data variables.product.prodname_actions %}.
* La acción que se utilizó para desplegar la app web es la acción oficial [`Azure/webapps-deploy`](https://github.com/Azure/webapps-deploy) de Azure.
-* For more examples of GitHub Action workflows that deploy to Azure, see the [actions-workflow-samples](https://github.com/Azure/actions-workflow-samples) repository.
+* Para encontrar más ejemplos de flujos de trabajo de GitHub Actions que desplieguen a Azure, consulta el repositorio [actions-workflow-samples](https://github.com/Azure/actions-workflow-samples).
diff --git a/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-nodejs-to-azure-app-service.md b/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-nodejs-to-azure-app-service.md
index 0bef0175a3..975c34df7a 100644
--- a/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-nodejs-to-azure-app-service.md
+++ b/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-nodejs-to-azure-app-service.md
@@ -30,7 +30,7 @@ This guide explains how to use {% data variables.product.prodname_actions %} to
{% note %}
-**Note**: {% data reusables.actions.about-oidc-short-overview %} and "[Configuring OpenID Connect in Azure](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)."
+**Nota**: {% data reusables.actions.about-oidc-short-overview %} y "[Configurar OpenID Connect en Azure](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)".
{% endnote %}
diff --git a/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-php-to-azure-app-service.md b/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-php-to-azure-app-service.md
index 667bbb9a5b..a13ac16f12 100644
--- a/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-php-to-azure-app-service.md
+++ b/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-php-to-azure-app-service.md
@@ -24,7 +24,7 @@ This guide explains how to use {% data variables.product.prodname_actions %} to
{% note %}
-**Note**: {% data reusables.actions.about-oidc-short-overview %} and "[Configuring OpenID Connect in Azure](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)."
+**Nota**: {% data reusables.actions.about-oidc-short-overview %} y "[Configurar OpenID Connect en Azure](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)".
{% endnote %}
@@ -152,4 +152,4 @@ Los siguientes recursos también pueden ser útiles:
* Para encontrar el flujo de trabajo inicial original, consulta el archivo [`azure-webapps-php.yml`](https://github.com/actions/starter-workflows/blob/main/deployments/azure-webapps-php.yml) en el repositorio `starter-workflows` de {% data variables.product.prodname_actions %}.
* La acción que se utilizó para desplegar la app web es la acción oficial [`Azure/webapps-deploy`](https://github.com/Azure/webapps-deploy) de Azure.
-* For more examples of GitHub Action workflows that deploy to Azure, see the [actions-workflow-samples](https://github.com/Azure/actions-workflow-samples) repository.
+* Para encontrar más ejemplos de flujos de trabajo de GitHub Actions que desplieguen a Azure, consulta el repositorio [actions-workflow-samples](https://github.com/Azure/actions-workflow-samples).
diff --git a/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-python-to-azure-app-service.md b/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-python-to-azure-app-service.md
index e511831b7c..667f774045 100644
--- a/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-python-to-azure-app-service.md
+++ b/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-python-to-azure-app-service.md
@@ -25,7 +25,7 @@ This guide explains how to use {% data variables.product.prodname_actions %} to
{% note %}
-**Note**: {% data reusables.actions.about-oidc-short-overview %} and "[Configuring OpenID Connect in Azure](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)."
+**Nota**: {% data reusables.actions.about-oidc-short-overview %} y "[Configurar OpenID Connect en Azure](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)".
{% endnote %}
@@ -148,4 +148,4 @@ Los siguientes recursos también pueden ser útiles:
* Para encontrar el flujo de trabajo inicial original, consulta el archivo [`azure-webapps-python.yml`](https://github.com/actions/starter-workflows/blob/main/deployments/azure-webapps-python.yml) en el repositorio `starter-workflows` de {% data variables.product.prodname_actions %}.
* La acción que se utilizó para desplegar la app web es la acción oficial [`Azure/webapps-deploy`](https://github.com/Azure/webapps-deploy) de Azure.
-* For more examples of GitHub Action workflows that deploy to Azure, see the [actions-workflow-samples](https://github.com/Azure/actions-workflow-samples) repository.
+* Para encontrar más ejemplos de flujos de trabajo de GitHub Actions que desplieguen a Azure, consulta el repositorio [actions-workflow-samples](https://github.com/Azure/actions-workflow-samples).
diff --git a/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-to-azure-kubernetes-service.md b/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-to-azure-kubernetes-service.md
index 79c1e9d79f..f3617bc0c2 100644
--- a/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-to-azure-kubernetes-service.md
+++ b/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-to-azure-kubernetes-service.md
@@ -24,7 +24,7 @@ This guide explains how to use {% data variables.product.prodname_actions %} to
{% note %}
-**Note**: {% data reusables.actions.about-oidc-short-overview %} and "[Configuring OpenID Connect in Azure](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)."
+**Nota**: {% data reusables.actions.about-oidc-short-overview %} y "[Configurar OpenID Connect en Azure](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)".
{% endnote %}
@@ -123,4 +123,4 @@ Los siguientes recursos también pueden ser útiles:
* Para encontrar el flujo de trabajo inicial original, consulta el archivo [`azure-kubernetes-service.yml`](https://github.com/actions/starter-workflows/blob/main/deployments/azure-kubernetes-service.yml) en el repositorio `starter-workflows` de {% data variables.product.prodname_actions %}.
* Las acciones que se utilizan en este flujo de trabajo son las oficiales de Azure: [`Azure/login`](https://github.com/Azure/login),[`Azure/aks-set-context`](https://github.com/Azure/aks-set-context), [`Azure/CLI`](https://github.com/Azure/CLI), [`Azure/k8s-bake`](https://github.com/Azure/k8s-bake) y [`Azure/k8s-deploy`](https://github.com/Azure/k8s-deploy).
-* For more examples of GitHub Action workflows that deploy to Azure, see the [actions-workflow-samples](https://github.com/Azure/actions-workflow-samples) repository.
+* Para encontrar más ejemplos de flujos de trabajo de GitHub Actions que desplieguen a Azure, consulta el repositorio [actions-workflow-samples](https://github.com/Azure/actions-workflow-samples).
diff --git a/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-to-azure-static-web-app.md b/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-to-azure-static-web-app.md
index 758ce9d98c..fd074450ea 100644
--- a/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-to-azure-static-web-app.md
+++ b/translations/es-ES/content/actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure/deploying-to-azure-static-web-app.md
@@ -24,7 +24,7 @@ This guide explains how to use {% data variables.product.prodname_actions %} to
{% note %}
-**Note**: {% data reusables.actions.about-oidc-short-overview %} and "[Configuring OpenID Connect in Azure](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)."
+**Nota**: {% data reusables.actions.about-oidc-short-overview %} y "[Configurar OpenID Connect en Azure](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)".
{% endnote %}
@@ -110,4 +110,4 @@ Los siguientes recursos también pueden ser útiles:
* Para encontrar el flujo de trabajo inicial original, consulta el archivo [`azure-staticwebapp.yml`](https://github.com/actions/starter-workflows/blob/main/deployments/azure-staticwebapp.yml) en el repositorio `starter-workflows` de {% data variables.product.prodname_actions %}.
* The action used to deploy the web app is the official Azure [`Azure/static-web-apps-deploy`](https://github.com/Azure/static-web-apps-deploy) action.
-* For more examples of GitHub Action workflows that deploy to Azure, see the [actions-workflow-samples](https://github.com/Azure/actions-workflow-samples) repository.
+* Para encontrar más ejemplos de flujos de trabajo de GitHub Actions que desplieguen a Azure, consulta el repositorio [actions-workflow-samples](https://github.com/Azure/actions-workflow-samples).
diff --git a/translations/es-ES/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-cloud-providers.md b/translations/es-ES/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-cloud-providers.md
index b6b78ef434..d9167ef9eb 100644
--- a/translations/es-ES/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-cloud-providers.md
+++ b/translations/es-ES/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-cloud-providers.md
@@ -1,6 +1,6 @@
---
title: Configuring OpenID Connect in cloud providers
-shortTitle: Configuring OpenID Connect in cloud providers
+shortTitle: Configurar OpenID Connect en los proveedores de servicios en la nube
intro: Use OpenID Connect within your workflows to authenticate with cloud providers.
miniTocMaxHeadingLevel: 3
versions:
@@ -17,7 +17,7 @@ topics:
## Resumen
-OpenID Connect (OIDC) allows your {% data variables.product.prodname_actions %} workflows to access resources in your cloud provider, without having to store any credentials as long-lived {% data variables.product.prodname_dotcom %} secrets.
+OpenID Connect (OIDC) permite que tus flujos de trabajo de {% data variables.product.prodname_actions %} accedan a los recursos de tu proveedor de servicios en la nube sin tener que almacenar credenciales como secretos de {% data variables.product.prodname_dotcom %} de larga duración.
To use OIDC, you will first need to configure your cloud provider to trust {% data variables.product.prodname_dotcom %}'s OIDC as a federated identity, and must then update your workflows to authenticate using tokens.
@@ -37,7 +37,7 @@ If your cloud provider doesn't yet offer an official action, you can update your
### Adding permissions settings
-The workflow will require a `permissions` setting with a defined [`id-token`](/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token) value. If you only need to fetch an OIDC token for a single job, then this permission can be set within that job. Por ejemplo:
+El flujo de trabajo requerirá una configuración de `permissions` con un valor de [`id-token`](/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token) definido. Si solo necesitas recuperar un token de OIDC para un solo job, entonces este permiso puede configurarse dentro de dicho job. Por ejemplo:
```yaml{:copy}
permissions:
@@ -88,7 +88,7 @@ jobs:
The following example demonstrates how to use enviroment variables to request a JSON Web Token.
-For your deployment job, you will need to define the token settings, using `actions/github-script` with the `core` toolkit. For more information, see "[Adding actions toolkit packages](/actions/creating-actions/creating-a-javascript-action#adding-actions-toolkit-packages)."
+For your deployment job, you will need to define the token settings, using `actions/github-script` with the `core` toolkit. Para obtener más información, consulta la sección "[Agregar paquetes de kit de herramientas de acciones](/actions/creating-actions/creating-a-javascript-action#adding-actions-toolkit-packages)".
Por ejemplo:
diff --git a/translations/es-ES/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-google-cloud-platform.md b/translations/es-ES/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-google-cloud-platform.md
index 94dd61f8b7..58ae87501b 100644
--- a/translations/es-ES/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-google-cloud-platform.md
+++ b/translations/es-ES/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-google-cloud-platform.md
@@ -1,6 +1,6 @@
---
title: Configuring OpenID Connect in Google Cloud Platform
-shortTitle: Configuring OpenID Connect in Google Cloud Platform
+shortTitle: Configurar OpenID Connect en Google Cloud Platform
intro: Use OpenID Connect within your workflows to authenticate with Google Cloud Platform.
miniTocMaxHeadingLevel: 3
versions:
@@ -17,7 +17,7 @@ topics:
## Resumen
-OpenID Connect (OIDC) allows your {% data variables.product.prodname_actions %} workflows to access resources in Google Cloud Platform (GCP), without needing to store the GCP credentials as long-lived {% data variables.product.prodname_dotcom %} secrets.
+OpenID Connect (OIDC) permite que tus flujos de trabajo de {% data variables.product.prodname_actions %} accedan a recursos en la Plataforma de Google Cloud (GCP) sin necesidad de almacenar sus credenciales como secretos de {% data variables.product.prodname_dotcom %} de larga duración.
Esta guía te proporciona un resumen de cómo configurar GCP para que confíe en el OIDC de {% data variables.product.prodname_dotcom %} como una entidad federada e incluye un ejemplo de flujo de trabajo para la acción [`google-github-actions/auth`](https://github.com/google-github-actions/auth) que utiliza tokens para autenticarse al GCP para acceder a los recursos.
@@ -35,9 +35,9 @@ To configure the OIDC identity provider in GCP, you will need to perform the fol
2. Configure the mapping and add conditions.
3. Connect the new pool to a service account.
-Additional guidance for configuring the identity provider:
+Orientación adicional para configurar el proveedor de identidad:
-- Para fortalecer la seguridad, asegúrate de haber revisado la sección ["Configurar la confianza de OIDC con la nube"](/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect#configuring-the-oidc-trust-with-the-cloud). For an example, see ["Configuring the subject in your cloud provider"](/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect#configuring-the-subject-in-your-cloud-provider).
+- Para fortalecer la seguridad, asegúrate de haber revisado la sección ["Configurar la confianza de OIDC con la nube"](/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect#configuring-the-oidc-trust-with-the-cloud). Por ejemplo, consulta ["Configurar el tema en tu proveedor de servicios en la nube"](/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect#configuring-the-subject-in-your-cloud-provider).
- For the service account to be available for configuration, it needs to be assigned to the `roles/iam.workloadIdentityUser` role. Para obtener más información, consulta la "[Documentación de GCP](https://cloud.google.com/iam/docs/workload-identity-federation?_ga=2.114275588.-285296507.1634918453#conditions)".
- The Issuer URL to use: `https://token.actions.githubusercontent.com`
@@ -49,7 +49,7 @@ To update your workflows for OIDC, you will need to make two changes to your YAM
### Agregar ajustes de permisos
-The workflow will require a `permissions` setting with a defined [`id-token`](/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token) value. If you only need to fetch an OIDC token for a single job, then this permission can be set within that job. Por ejemplo:
+El flujo de trabajo requerirá una configuración de `permissions` con un valor de [`id-token`](/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token) definido. Si solo necesitas recuperar un token de OIDC para un solo job, entonces este permiso puede configurarse dentro de dicho job. Por ejemplo:
```yaml{:copy}
permissions:
diff --git a/translations/es-ES/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-hashicorp-vault.md b/translations/es-ES/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-hashicorp-vault.md
index cb7b9b0008..002ceea559 100644
--- a/translations/es-ES/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-hashicorp-vault.md
+++ b/translations/es-ES/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-hashicorp-vault.md
@@ -1,6 +1,6 @@
---
title: Configuring OpenID Connect in HashiCorp Vault
-shortTitle: Configuring OpenID Connect in HashiCorp Vault
+shortTitle: Configurar OpenID Connect en HashiCorp Vault
intro: Use OpenID Connect within your workflows to authenticate with HashiCorp Vault.
miniTocMaxHeadingLevel: 3
versions:
@@ -45,7 +45,7 @@ To update your workflows for OIDC, you will need to make two changes to your YAM
To add OIDC integration to your workflows that allow them to access secrets in Vault, you will need to add the following code changes:
-- Grant permission to fetch the token from the {% data variables.product.prodname_dotcom %} OIDC provider:
+- Otorga permiso para recuperar el token del proveedor de OIDC de {% data variables.product.prodname_dotcom %}:
- The workflow needs `permissions:` settings with the `id-token` value set to `write`. This lets you fetch the OIDC token from every job in the workflow.
- Request the JWT from the {% data variables.product.prodname_dotcom %} OIDC provider, and present it to HashiCorp Vault to receive an access token:
- Podrías utilizar las [Herramientas de las acciones](https://github.com/actions/toolkit/) para recuperar los tokens para tu job o puedes utilizar la acción [`hashicorp/vault-action`](https://github.com/hashicorp/vault-action) para recuperar el JWT y recibir el token de acceso de la bóveda.
@@ -54,7 +54,7 @@ This example demonstrates how to use OIDC with the official action to request a
### Agregar ajustes de permisos
-The workflow will require a `permissions` setting with a defined [`id-token`](/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token) value. If you only need to fetch an OIDC token for a single job, then this permission can be set within that job. Por ejemplo:
+El flujo de trabajo requerirá una configuración de `permissions` con un valor de [`id-token`](/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token) definido. Si solo necesitas recuperar un token de OIDC para un solo job, entonces este permiso puede configurarse dentro de dicho job. Por ejemplo:
```yaml{:copy}
permissions:
diff --git a/translations/es-ES/content/actions/deployment/targeting-different-environments/index.md b/translations/es-ES/content/actions/deployment/targeting-different-environments/index.md
index 87b0abf990..b6268ca514 100644
--- a/translations/es-ES/content/actions/deployment/targeting-different-environments/index.md
+++ b/translations/es-ES/content/actions/deployment/targeting-different-environments/index.md
@@ -1,7 +1,7 @@
---
title: Targeting different environments
-shortTitle: Targeting different environments
-intro: Puedes configurr ambientes con reglas de protección y secretos. A workflow job that references an environment must follow any protection rules for the environment before running or accessing the environment's secrets.
+shortTitle: Apuntar a ambientes diferentes
+intro: Puedes configurr ambientes con reglas de protección y secretos. Un job de flujo de trabajo que referencie a un ambiente debe seguir cualquier regla de protección para el ambiente antes de ejecutar o acceder a los secretos de dicho ambiente.
versions:
fpt: '*'
ghae: issue-4856
diff --git a/translations/es-ES/content/actions/deployment/targeting-different-environments/using-environments-for-deployment.md b/translations/es-ES/content/actions/deployment/targeting-different-environments/using-environments-for-deployment.md
index 86ef5aa8bd..da09dec2cc 100644
--- a/translations/es-ES/content/actions/deployment/targeting-different-environments/using-environments-for-deployment.md
+++ b/translations/es-ES/content/actions/deployment/targeting-different-environments/using-environments-for-deployment.md
@@ -83,7 +83,7 @@ Los secretos que se almacenan en un ambiente sólo se encuentran disponibles par
2. Optionally, specify the amount of time to wait before allowing workflow jobs that use this environment to proceed.
1. Select **Wait timer**.
1. Enter the number of minutes to wait.
- 1. Click **Save protection rules**.
+ 1. Haz clic en **Guardar reglas de protección**.
3. Optionally, specify what branches can deploy to this environment. For more information about the possible values, see "[Deployment branches](#deployment-branches)."
1. Select the desired option in the **Deployment branches** dropdown.
1. If you chose **Selected branches**, enter the branch name patterns that you want to allow.
diff --git a/translations/es-ES/content/actions/guides.md b/translations/es-ES/content/actions/guides.md
index ee8e1bf12c..b6aa568ad3 100644
--- a/translations/es-ES/content/actions/guides.md
+++ b/translations/es-ES/content/actions/guides.md
@@ -1,5 +1,5 @@
---
-title: Guides for GitHub Actions
+title: Guías para las GitHub Actions
intro: 'Estas guías para {% data variables.product.prodname_actions %} incluyen casos de uso y ejemplos específicos que te ayudarán a configurar los flujos de trabajo.'
allowTitleToDifferFromFilename: true
layout: product-guides
diff --git a/translations/es-ES/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md b/translations/es-ES/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md
index 0ae07c935f..014d20b526 100644
--- a/translations/es-ES/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md
+++ b/translations/es-ES/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md
@@ -36,13 +36,13 @@ shortTitle: Monitor & troubleshoot
## Reviewing the self-hosted runner application log files
-You can monitor the status of the self-hosted runner application and its activities. Log files are kept in the `_diag` directory, and a new one is generated each time the application is started. The filename begins with *Runner_*, and is followed by a UTC timestamp of when the application was started.
+You can monitor the status of the self-hosted runner application and its activities. Log files are kept in the `_diag` directory where you installed the runner application, and a new log is generated each time the application is started. The filename begins with *Runner_*, and is followed by a UTC timestamp of when the application was started.
For detailed logs on workflow job executions, see the next section describing the *Worker_* files.
## Reviewing a job's log file
-The self-hosted runner application creates a detailed log file for each job that it processes. These files are stored in the `_diag` directory, and the filename begins with *Worker_*.
+The self-hosted runner application creates a detailed log file for each job that it processes. These files are stored in the `_diag` directory where you installed the runner application, and the filename begins with *Worker_*.
{% linux %}
@@ -163,7 +163,7 @@ You can view the update activities in the *Runner_* log files. For example:
[Feb 12 12:37:07 INFO SelfUpdater] An update is available.
```
-In addition, you can find more information in the _SelfUpdate_ log files located in the `_diag` directory.
+In addition, you can find more information in the _SelfUpdate_ log files located in the `_diag` directory where you installed the runner application.
{% linux %}
diff --git a/translations/es-ES/content/actions/index.md b/translations/es-ES/content/actions/index.md
index 9cad3710b1..7be82db638 100644
--- a/translations/es-ES/content/actions/index.md
+++ b/translations/es-ES/content/actions/index.md
@@ -24,9 +24,14 @@ featuredLinks:
- /actions/learn-github-actions/expressions
- /actions/learn-github-actions/environment-variables
- /actions/security-guides/encrypted-secrets
-changelog:
- label: actions
- prefix: 'GitHub Actions: '
+ videos:
+ - title: "Inside GitHub: How we use GitHub Actions – Brian Douglas"
+ href: 'https://www.youtube-nocookie.com/embed/MW0V5Q9WJu4'
+ - title: "Advanced GitHub Actions – Jennifer Schelkopf"
+ href: 'https://www.youtube-nocookie.com/embed/wWOH44Lscoc'
+ - title: "GitHub Actions in action – Karan MV"
+ href: 'https://www.youtube-nocookie.com/embed/4SWO0Pc76CU'
+ videosHeading: GitHub Universe 2021 videos
examples_source: data/product-examples/actions/code-examples.yml
product_video: 'https://www.youtube-nocookie.com/embed/cP0I9w2coGU'
redirect_from:
diff --git a/translations/es-ES/content/actions/learn-github-actions/contexts.md b/translations/es-ES/content/actions/learn-github-actions/contexts.md
index cc3aa6d5d9..82f50d096a 100644
--- a/translations/es-ES/content/actions/learn-github-actions/contexts.md
+++ b/translations/es-ES/content/actions/learn-github-actions/contexts.md
@@ -187,7 +187,7 @@ The `github` context contains information about the workflow run and the event t
| `github.api_url` | `string` | The URL of the {% data variables.product.prodname_dotcom %} REST API. |
| `github.base_ref` | `string` | The `base_ref` or target branch of the pull request in a workflow run. This property is only available when the event that triggers a workflow run is either `pull_request` or `pull_request_target`. |
| `github.env` | `string` | Path on the runner to the file that sets environment variables from workflow commands. This file is unique to the current step and is a different file for each step in a job. For more information, see "[Workflow commands for {% data variables.product.prodname_actions %}](/actions/learn-github-actions/workflow-commands-for-github-actions#setting-an-environment-variable)."
-| `github.event` | `object` | The full event webhook payload. You can access individual properties of the event using this context. This object is identical to the webhook payload of the event that triggered the workflow run, and is different for each event. The webhooks for each {% data variables.product.prodname_actions %} event is linked in "[Events that trigger workflows](/articles/events-that-trigger-workflows/)." For example, for a workflow run triggered by the [`push` event](http://localhost:4000/en/actions/learn-github-actions/events-that-trigger-workflows#push), this object contains the contents of the [push webhook payload](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#push). |
+| `github.event` | `object` | The full event webhook payload. You can access individual properties of the event using this context. This object is identical to the webhook payload of the event that triggered the workflow run, and is different for each event. The webhooks for each {% data variables.product.prodname_actions %} event is linked in "[Events that trigger workflows](/articles/events-that-trigger-workflows/)." For example, for a workflow run triggered by the [`push` event](/actions/using-workflows/events-that-trigger-workflows#push), this object contains the contents of the [push webhook payload](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#push). |
| `github.event_name` | `string` | The name of the event that triggered the workflow run. |
| `github.event_path` | `string` | The path to the file on the runner that contains the full event webhook payload. |
| `github.graphql_url` | `string` | The URL of the {% data variables.product.prodname_dotcom %} GraphQL API. |
diff --git a/translations/es-ES/content/actions/learn-github-actions/environment-variables.md b/translations/es-ES/content/actions/learn-github-actions/environment-variables.md
index 83e39ee23f..315f0e46a1 100644
--- a/translations/es-ES/content/actions/learn-github-actions/environment-variables.md
+++ b/translations/es-ES/content/actions/learn-github-actions/environment-variables.md
@@ -18,83 +18,188 @@ versions:
## About environment variables
-{% data variables.product.prodname_dotcom %} sets default environment variables that are available to every step in a workflow run. Environment variables are case-sensitive. Commands run in actions or steps can create, read, and modify environment variables.
+You can use environment variables to store information that you want to reference in your workflow. You reference environment variables within a workflow step or an action, and the variables are interpolated on the runner machine that runs your workflow. Commands that run in actions or workflow steps can create, read, and modify environment variables.
-To set custom environment variables, you need to specify the variables in the workflow file. You can define environment variables for a step, job, or entire workflow using the [`jobs..steps[*].env`](/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idstepsenv), [`jobs..env`](/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idenv), and [`env`](/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#env) keywords. For more information, see "[Workflow syntax for {% data variables.product.prodname_dotcom %}](/articles/workflow-syntax-for-github-actions/#jobsjob_idstepsenv)."
+You can set your own custom environment variables, you can use the default environment variables that {% data variables.product.prodname_dotcom %} sets automatically, and you can also use any other environment variables that are set in the working environment on the runner. Environment variables are case-sensitive.
+
+To set a custom environment variable, you must define it in the workflow file. The scope of a custom environment variable is limited to the element in which it is defined. You can define environment variables that are scoped for:
+
+* The entire workflow, by using [`env`](/actions/using-workflows/workflow-syntax-for-github-actions#env) at the top level of the workflow file.
+* The contents of a job within a workflow, by using [`jobs..env`](/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idenv).
+* A specific step within a job, by using [`jobs..steps[*].env`](/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsenv).
{% raw %}
```yaml
+name: Greeting on variable day
+
+on:
+ workflow_dispatch
+
+env:
+ DAY_OF_WEEK: Monday
+
jobs:
- weekday_job:
+ greeting_job:
runs-on: ubuntu-latest
env:
- DAY_OF_WEEK: Mon
+ Greeting: Hello
steps:
- - name: "Hello world when it's Monday"
- if: ${{ env.DAY_OF_WEEK == 'Mon' }}
- run: echo "Hello $FIRST_NAME $middle_name $Last_Name, today is Monday!"
+ - name: "Say Hello Mona it's Monday"
+ run: echo "$Greeting $First_Name. Today is $DAY_OF_WEEK!"
env:
- FIRST_NAME: Mona
- middle_name: The
- Last_Name: Octocat
+ First_Name: Mona
```
{% endraw %}
-To use the value of an environment variable in a workflow file, you should use the [`env` context](/actions/reference/context-and-expression-syntax-for-github-actions#env-context). If you want to use the value of an environment variable inside a runner, you can use the runner operating system's normal method for reading environment variables.
+The example above shows three custom environment variables being used in an `echo` command: `$DAY_OF_WEEK`, `$Greeting`, and `$First_Name`. The values for these environment variables are set, and scoped, at the workflow, job, and step level respectively.
-If you use the workflow file's `run` key to read environment variables from within the runner operating system (as shown in the example above), the variable is substituted in the runner operating system after the job is sent to the runner. For other parts of a workflow file, you must use the `env` context to read environment variables; this is because workflow keys (such as `if`) require the variable to be substituted during workflow processing before it is sent to the runner.
+Because environment variable interpolation is done after a workflow job is sent to a runner machine, you must use the appropriate syntax for the shell that's used on the runner. In this example, the workflow specifies `ubuntu-latest`. By default, Linux runners use the bash shell, so you must use the syntax `$NAME`. If the workflow specified a Windows runner, you would use the syntax for PowerShell, `$env:NAME`. For more information about shells, see "[Workflow syntax for {% data variables.product.prodname_actions %}](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idstepsshell)."
-You can also use the `GITHUB_ENV` environment file to set an environment variable that the following steps in a job can use. The environment file can be used directly by an action or as a shell command in a workflow file using the `run` keyword. For more information, see "[Workflow commands for {% data variables.product.prodname_actions %}](/actions/reference/workflow-commands-for-github-actions/#setting-an-environment-variable)."
+{% note %}
+
+**Note**: You can list the entire set of environment variables that are available to a workflow step by using `run: env` in a step and then examining the output for the step.
+
+{% endnote %}
+
+## Using contexts to access environment variable values
+
+In addition to environment variables, {% data variables.product.prodname_actions %} also allows you to set and read values using contexts. Environment variables and contexts are intended for use at different points in the workflow.
+
+Environment variables are always interpolated on the virtual machine runner. However, parts of a workflow are processed by {% data variables.product.prodname_actions %} and are not sent to the runner. You cannot use environment variables in these parts of a workflow file. Instead, you can use contexts. For example, an `if` conditional, which determines whether a job or step is sent to the runner, is always processed by {% data variables.product.prodname_actions %}. You can use a context in an `if` conditional statement to access the value of an environment variable.
+
+{% raw %}
+```yaml
+env:
+ DAY_OF_WEEK: Monday
+
+jobs:
+ greeting_job:
+ runs-on: ubuntu-latest
+ env:
+ Greeting: Hello
+ steps:
+ - name: "Say Hello Mona it's Monday"
+ if: ${{ env.DAY_OF_WEEK == 'Monday' }}
+ run: echo "$Greeting $First_Name. Today is $DAY_OF_WEEK!"
+ env:
+ First_Name: Mona
+```
+{% endraw %}
+
+In this modification of the first example, we've introduced an `if` conditional. The workflow step is now only run if `DAYS_OF_WEEK` is set to "Monday". We access this value from the `if` conditional statement by using the [`env` context](/actions/learn-github-actions/contexts#env-context).
+
+{% note %}
+
+**Note**: Contexts are usually denoted using the dollar sign and curly braces, as {% raw %}`${{ context.property }}`{% endraw %}. In an `if` conditional, the {% raw %}`${{` and `}}`{% endraw %} are optional, but if you use them they must enclose the entire comparison statement, as shown above.
+
+{% endnote %}
+
+You will commonly use either the `env` or `github` context to access environment variable values in parts of the workflow that are processed before jobs are sent to runners.
+
+
+| Context | Use case | Example |
+| --- | --- | --- |
+| `env` | Reference custom environment variables defined in the workflow. | {% raw %}`${{ env.MY_VARIABLE }}`{% endraw %} |
+| `github` | Reference information about the workflow run and the event that triggered the run. | {% raw %}`${{ github.repository }}`{% endraw %} |
+
+
+
+There are many other contexts that you can use for a variety of purposes in your workflows. For more information, see "[Contexts](/actions/learn-github-actions/contexts)." For details of where you can use specific contexts within a workflow, see "[Context availability](/actions/learn-github-actions/contexts#context-availability)."
+
+### Other types of variables
+
+In most places in a workflow, the only types of variables that you can use are either environment variables, such as `$MY_VARIABLE`, or the equivalent context property, such as {% raw %}`${{ env.MY_VARIABLE }}`{% endraw %}. Exceptions are:
+
+* Inputs for the `workflow_call` and `workflow_dispatch` events, which allow you to pass values to a workflow. For more information, see [`on.workflow_call.inputs`](/actions/learn-github-actions/workflow-syntax-for-github-actions#onworkflow_callinputs) and [`on.workflow_dispatch.inputs`](/actions/learn-github-actions/workflow-syntax-for-github-actions#onworkflow_dispatchinputs).
+* Job outputs, which allow you to pass values between jobs in a workflow. For more information, see [`jobs..outputs`](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idoutputs).
+* The variables in a format expression, which allow you to replace parts of a string. For more information, see [`format`](/actions/learn-github-actions/expressions#format).
+
+## Naming conventions for environment variables
+
+When you set a custom environment variable, you cannot use any of the default environment variable names. For a complete list of these, see "[Default environment variables](#default-environment-variables)" below. If you attempt to override the value of one of these default environment variables, the assignment is ignored.
+
+Any new environment variables you set that point to a location on the filesystem should have a `_PATH` suffix. The `HOME`, `GITHUB_ENV`, and `GITHUB_WORKSPACE` default environment variables are exceptions to this convention.
## Default environment variables
+The default environment variables that {% data variables.product.prodname_dotcom %} sets are available to every step in a workflow.
+
We strongly recommend that actions use environment variables to access the filesystem rather than using hardcoded file paths. {% data variables.product.prodname_dotcom %} sets environment variables for actions to use in all runner environments.
| Environment variable | Description |
| ---------------------|------------ |
| `CI` | Always set to `true`. |
-| `GITHUB_WORKFLOW` | The name of the workflow. |
-| `GITHUB_RUN_ID` | {% data reusables.github-actions.run_id_description %} |
-| `GITHUB_RUN_NUMBER` | {% data reusables.github-actions.run_number_description %} |
-| `GITHUB_JOB` | The [job_id](/actions/reference/workflow-syntax-for-github-actions#jobsjob_id) of the current job. |
-| `GITHUB_ACTION` | The unique identifier (`id`) of the action. |
-| `GITHUB_ACTION_PATH` | The path where your action is located. You can use this path to access files located in the same repository as your action. This variable is only supported in composite actions. |
+| `GITHUB_ACTION` | The name of the action currently running, or the [`id`](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idstepsid) of a step. For example, for an action, `__repo-owner_name-of-action-repo`.
{% data variables.product.prodname_dotcom %} removes special characters, and uses the name `__run` when the current step runs a script without an `id`. If you use the same script or action more than once in the same job, the name will include a suffix that consists of the sequence number preceded by an underscore. For example, the first script you run will have the name `__run`, and the second script will be named `__run_2`. Similarly, the second invocation of `actions/checkout` will be `actionscheckout2`. |
+| `GITHUB_ACTION_PATH` | The path where an action is located. This property is only supported in composite actions. You can use this path to access files located in the same repository as the action. For example, `/home/runner/work/_actions/repo-owner/name-of-action-repo/v1`. |
+| `GITHUB_ACTION_REPOSITORY` | For a step executing an action, this is the owner and repository name of the action. For example, `actions/checkout`. |
| `GITHUB_ACTIONS` | Always set to `true` when {% data variables.product.prodname_actions %} is running the workflow. You can use this variable to differentiate when tests are being run locally or by {% data variables.product.prodname_actions %}.
| `GITHUB_ACTOR` | The name of the person or app that initiated the workflow. For example, `octocat`. |
-| `GITHUB_REPOSITORY` | The owner and repository name. For example, `octocat/Hello-World`. |
-| `GITHUB_EVENT_NAME` | The name of the webhook event that triggered the workflow. |
-| `GITHUB_EVENT_PATH` | The path of the file with the complete webhook event payload. For example, `/github/workflow/event.json`. |
-| `GITHUB_WORKSPACE` | The {% data variables.product.prodname_dotcom %} workspace directory path, initially empty. For example, `/home/runner/work/my-repo-name/my-repo-name`. The [actions/checkout](https://github.com/actions/checkout) action will check out files, by default a copy of your repository, within this directory. |
-| `GITHUB_SHA` | The commit SHA that triggered the workflow. For example, `ffac537e6cbbf934b08745a378932722df287a53`. |
-| `GITHUB_REF` | The branch or tag ref that triggered the workflow. For example, `refs/heads/feature-branch-1`. If neither a branch or tag is available for the event type, the variable will not exist. |
+| `GITHUB_API_URL` | Returns the API URL. For example: `{% data variables.product.api_url_code %}`.
+| `GITHUB_BASE_REF` | The name of the base ref or target branch of the pull request in a workflow run. This is only set when the event that triggers a workflow run is either `pull_request` or `pull_request_target`. For example, `main`. |
+| `GITHUB_ENV` | The path on the runner to the file that sets environment variables from workflow commands. This file is unique to the current step and changes for each step in a job. For example, `/home/runner/work/_temp/_runner_file_commands/set_env_87406d6e-4979-4d42-98e1-3dab1f48b13a`. For more information, see "[Workflow commands for {% data variables.product.prodname_actions %}](/actions/using-workflows/workflow-commands-for-github-actions#setting-an-environment-variable)." |
+| `GITHUB_EVENT_NAME` | The name of the event that triggered the workflow. For example, `workflow_dispatch`. |
+| `GITHUB_EVENT_PATH` | The path to the file on the runner that contains the full event webhook payload. For example, `/github/workflow/event.json`. |
+| `GITHUB_GRAPHQL_URL` | Returns the GraphQL API URL. For example: `{% data variables.product.graphql_url_code %}`.
+| `GITHUB_HEAD_REF` | The head ref or source branch of the pull request in a workflow run. This property is only set when the event that triggers a workflow run is either `pull_request` or `pull_request_target`. For example, `feature-branch-1`. |
+| `GITHUB_JOB` | The [job_id](/actions/reference/workflow-syntax-for-github-actions#jobsjob_id) of the current job. For example, `greeting_job`. |
+| `GITHUB_PATH` | The path on the runner to the file that sets system `PATH` variables from workflow commands. This file is unique to the current step and changes for each step in a job. For example, `/home/runner/work/_temp/_runner_file_commands/add_path_899b9445-ad4a-400c-aa89-249f18632cf5`. For more information, see "[Workflow commands for {% data variables.product.prodname_actions %}](/actions/using-workflows/workflow-commands-for-github-actions#adding-a-system-path)." |
+| `GITHUB_REF` | The branch or tag ref that triggered the workflow run. For branches this is the format `refs/heads/`, and for tags it is `refs/tags/`. This variable is only set if a branch or tag is available for the event type. For example, `refs/heads/feature-branch-1`. |
{%- ifversion fpt or ghec or ghes > 3.3 or ghae-issue-5338 %}
-| `GITHUB_REF_NAME` | {% data reusables.actions.ref_name-description %} |
+| `GITHUB_REF_NAME` | {% data reusables.actions.ref_name-description %} For example, `feature-branch-1`.|
| `GITHUB_REF_PROTECTED` | {% data reusables.actions.ref_protected-description %} |
| `GITHUB_REF_TYPE` | {% data reusables.actions.ref_type-description %} |
{%- endif %}
-| `GITHUB_HEAD_REF` | Only set for pull request events. The name of the head branch.
-| `GITHUB_BASE_REF` | Only set for pull request events. The name of the base branch.
-| `GITHUB_SERVER_URL`| Returns the URL of the {% data variables.product.product_name %} server. For example: `https://{% data variables.product.product_url %}`.
-| `GITHUB_API_URL` | Returns the API URL. For example: `{% data variables.product.api_url_code %}`.
-| `GITHUB_GRAPHQL_URL` | Returns the GraphQL API URL. For example: `{% data variables.product.graphql_url_code %}`.
-| `RUNNER_NAME` | {% data reusables.actions.runner-name-description %}
-| `RUNNER_OS` | {% data reusables.actions.runner-os-description %}{% if actions-runner-arch-envvars %}
-| `RUNNER_ARCH` | {% data reusables.actions.runner-arch-description %}{% endif %}
-| `RUNNER_TEMP` | {% data reusables.actions.runner-temp-directory-description %}
-{% ifversion not ghae %}| `RUNNER_TOOL_CACHE` | {% data reusables.actions.runner-tool-cache-description %}{% endif %}
+| `GITHUB_REPOSITORY` | The owner and repository name. For example, `octocat/Hello-World`. |
+| `GITHUB_REPOSITORY_OWNER` | The repository owner's name. For example, `octocat`. |
+| `GITHUB_RETENTION_DAYS` | The number of days that workflow run logs and artifacts are kept. For example, `90`. |
+| `GITHUB_RUN_ATTEMPT` | A unique number for each attempt of a particular workflow run in a repository. This number begins at 1 for the workflow run's first attempt, and increments with each re-run. For example, `3`. |
+| `GITHUB_RUN_ID` | {% data reusables.github-actions.run_id_description %} For example, `1658821493`. |
+| `GITHUB_RUN_NUMBER` | {% data reusables.github-actions.run_number_description %} For example, `3`. |
+| `GITHUB_SERVER_URL`| The URL of the {% data variables.product.product_name %} server. For example: `https://{% data variables.product.product_url %}`.
+| `GITHUB_SHA` | The commit SHA that triggered the workflow. For example, `ffac537e6cbbf934b08745a378932722df287a53`. |
+| `GITHUB_WORKFLOW` | The name of the workflow. For example, `My test workflow`. If the workflow file doesn't specify a `name`, the value of this variable is the full path of the workflow file in the repository. |
+| `GITHUB_WORKSPACE` | The default working directory on the runner for steps, and the default location of your repository when using the [`checkout`](https://github.com/actions/checkout) action. For example, `/home/runner/work/my-repo-name/my-repo-name`. |
+{%- if actions-runner-arch-envvars %}
+| `RUNNER_ARCH` | {% data reusables.actions.runner-arch-description %}
+{%- endif %} |
+| `RUNNER_NAME` | {% data reusables.actions.runner-name-description %} For example, `Hosted Agent` |
+| `RUNNER_OS` | {% data reusables.actions.runner-os-description %} For example, `Windows` |
+| `RUNNER_TEMP` | {% data reusables.actions.runner-temp-directory-description %} For example, `D:\a\_temp` |
+{% ifversion not ghae %}| `RUNNER_TOOL_CACHE` | {% data reusables.actions.runner-tool-cache-description %} For example, `C:\hostedtoolcache\windows` |{% endif %}
-{% tip %}
+{% note %}
-**Note:** If you need to use a workflow run's URL from within a job, you can combine these environment variables: `$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID`
+**Note:**
-{% endtip %}
+* If you need to use a workflow run's URL from within a job, you can combine these environment variables: `$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID`
+* Most of the default environment variables have a corresponding, and similarly named, context property. For example, the value of the `GITHUB_REF` environment variable can be read during workflow processing using the {% raw %}`${{ github.ref }}`{% endraw %} context property.
-### Determining when to use default environment variables or contexts
+{% endnote %}
-{% data reusables.github-actions.using-context-or-environment-variables %}
+## Detecting the operating system
-## Naming conventions for environment variables
+You can write a single workflow file that can be used for different operating systems by using the `RUNNER_OS` default environment variable and the corresponding context property {% raw %}`${{ runner.os }}`{% endraw %}. For example, the following workflow could be run successfully if you changed the operating system from `macos-latest` to `windows-latest` without having to alter the syntax of the environment variables, which differs depending on the shell being used by the runner.
-When you set a custom environment variable, you cannot use any of the default environment variable names listed above with the prefix `GITHUB_`. If you attempt to override the value of one of these default environment variables, the assignment is ignored.
+{% raw %}
+```yaml
+jobs:
+ if-Windows-else:
+ runs-on: macos-latest
+ steps:
+ - name: condition 1
+ if: runner.os == 'Windows'
+ run: echo "The operating system on the runner is $env:RUNNER_OS."
+ - name: condition 2
+ if: runner.os != 'Windows'
+ run: echo "The operating system on the runner is not Windows, it's $RUNNER_OS."
+```
+{% endraw %}
-Any new environment variables you set that point to a location on the filesystem should have a `_PATH` suffix. The `HOME` and `GITHUB_WORKSPACE` default variables are exceptions to this convention because the words "home" and "workspace" already imply a location.
+In this example, the two `if` statements check the `os` property of the `runner` context to determine the operating system of the runner. `if` conditionals are processed by {% data variables.product.prodname_actions %}, and only steps where the check resolves as `true` are sent to the runner. Here one of the checks will always be `true` and the other `false`, so only one of these steps is sent to the runner. Once the job is sent to the runner, the step is executed and the environment variable in the `echo` command is interpolated using the appropriate syntax (`$env:NAME` for PowerShell on Windows, and `$NAME` for bash and sh on Linux and MacOS). In this example, the statement `runs-on: macos-latest` means that the second step will be run.
+
+## Passing values between steps and jobs in a workflow
+
+ If you generate a value in one step of a job, you can use the value in subsequent steps of the same job by assigning the value to an existing or new environment variable and then writing this to the `GITHUB_ENV` environment file. The environment file can be used directly by an action, or from a shell command in the workflow file by using the `run` keyword. For more information, see "[Workflow commands for {% data variables.product.prodname_actions %}](/actions/reference/workflow-commands-for-github-actions/#setting-an-environment-variable)."
+
+ If you want to pass a value from a step in one job in a workflow to a step in another job in the workflow, you can define the value as a job output. You can then reference this job output from a step in another job. For more information, see "[Workflow syntax for {% data variables.product.prodname_actions %}](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idoutputs)."
+
\ No newline at end of file
diff --git a/translations/es-ES/content/actions/learn-github-actions/expressions.md b/translations/es-ES/content/actions/learn-github-actions/expressions.md
index b50a10bdb8..f08dcb2fca 100644
--- a/translations/es-ES/content/actions/learn-github-actions/expressions.md
+++ b/translations/es-ES/content/actions/learn-github-actions/expressions.md
@@ -15,7 +15,7 @@ miniTocMaxHeadingLevel: 3
## Acerca de las expresiones
-Puedes usar expresiones para establecer variables programáticamente en archivos de flujo de trabajo y contextos de acceso. Una expresión puede ser cualquier combinación de valores literales, referencias a un contexto o funciones. Puedes combinar valores literales, referencias de contexto y funciones usando operadores. Para obtener más información sobre los contextos, consulta la sección "[Contextos](/actions/learn-github-actions/contexts)".
+You can use expressions to programmatically set environment variables in workflow files and access contexts. Una expresión puede ser cualquier combinación de valores literales, referencias a un contexto o funciones. Puedes combinar valores literales, referencias de contexto y funciones usando operadores. Para obtener más información sobre los contextos, consulta la sección "[Contextos](/actions/learn-github-actions/contexts)".
Las expresiones se utilizan comúnmente con la palabra clave condicional `if` en un archivo de flujo de trabajo para determinar si un paso debe ejecutar. Cuando un condicional `if` es `true`, se ejecutará el paso.
@@ -50,12 +50,12 @@ env:
Como parte de una expresión, puedes usar tipos de datos `boolean`, `null`, `number` o `string`.
-| Tipo de datos | Valor literal |
-| ------------- | --------------------------------------------------------------------------------------- |
-| `boolean` | `verdadero` o `falso` |
-| `null` | `null` |
-| `number` | Cualquier formato de número compatible con JSON. |
-| `secuencia` | Debes usar comillas simples. Escapar comillas simples literales con una comilla simple. |
+| Tipo de datos | Valor literal |
+| ------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `boolean` | `verdadero` o `falso` |
+| `null` | `null` |
+| `number` | Cualquier formato de número compatible con JSON. |
+| `secuencia` | You don't need to enclose strings in {% raw %}${{{% endraw %} and {% raw %}}}{% endraw %}. However, if you do, you must use single quotes around the string and escape literal single quotes with an additional single quote. |
#### Ejemplo
@@ -68,8 +68,8 @@ env:
myFloatNumber: ${{ -9.2 }}
myHexNumber: ${{ 0xff }}
myExponentialNumber: ${{ -2.99-e2 }}
- myString: ${{ 'Mona the Octocat' }}
- myEscapedString: ${{ 'It''s open source!' } }}
+ myString: Mona the Octocat
+ myStringInBraces: ${{ 'It''s open source!' }}
```
{% endraw %}
@@ -252,7 +252,7 @@ jobs:
Arroja un solo hash para el conjunto de archivos que coincide con el patrón de `path`. Puedes proporcionar un patrón de `path` o `path` múltiples se parados por comas. El `path` está relacionado con el directorio `GITHUB_WORKSPACE` y solo puede incluir archivos dentro del directorio `GITHUB_WORKSPACE`. Esta función calcula un hash SHA-256 individual para cada archivo coincidente, y luego usa esos hashes para calcular un hash SHA-256 final para el conjunto de archivos. Para más información sobre SHA-256, consulta "[SHA-2](https://en.wikipedia.org/wiki/SHA-2)".
-Puedes usar caracteres de coincidencia de patrones para encontrar nombres de archivos. La coincidencia de patrones no distingue mayúsculas de minúsculas en Windows. Para obtener más información acerca de los caracteres compatibles con los patrones, consulta "[Sintaxis de flujo de trabajo para {% data variables.product.prodname_actions %}](/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions/#filter-pattern-cheat-sheet)".
+Puedes usar caracteres de coincidencia de patrones para encontrar nombres de archivos. La coincidencia de patrones no distingue mayúsculas de minúsculas en Windows. Para obtener más información acerca de los caracteres compatibles con los patrones, consulta "[Sintaxis de flujo de trabajo para {% data variables.product.prodname_actions %}](/actions/using-workflows/workflow-syntax-for-github-actions/#filter-pattern-cheat-sheet)".
#### Ejemplo con un solo patrón
diff --git a/translations/es-ES/content/actions/learn-github-actions/finding-and-customizing-actions.md b/translations/es-ES/content/actions/learn-github-actions/finding-and-customizing-actions.md
index 9f4088662a..d6d6c4c2aa 100644
--- a/translations/es-ES/content/actions/learn-github-actions/finding-and-customizing-actions.md
+++ b/translations/es-ES/content/actions/learn-github-actions/finding-and-customizing-actions.md
@@ -24,8 +24,9 @@ topics:
Las acciones que utilizas en tu flujo de trabajo pueden definirse en:
-- Un repositorio público
-- El mismo repositorio en donde tu archivo de flujo de trabajo hace referencia a la acción
+- El mismo repositorio que tu archivo de flujo de trabajo{% if internal-actions %}
+- Un repositorio interno con la mismo cuenta empresarial que se configuró para permitir el acceso a los flujos de trabajo{% endif %}
+- Cualquier repositorio público
- Una imagen del contenedor Docker publicada en Docker Hub
{% data variables.product.prodname_marketplace %} es una ubicación central para que encuentres acciones que crea la comunidad de {% data variables.product.prodname_dotcom %}.{% ifversion fpt or ghec %}La [página de {% data variables.product.prodname_marketplace %}](https://github.com/marketplace/actions/) te permite filtrar de acuerdo con la categoría de las acciones. {% endif %}
@@ -44,7 +45,11 @@ Puedes buscar acciones manualmente o por coincidencia exacta directamente en el
## Agregar una acción a tu flujo de trabajo
-Las páginas de listado de acciones incluyen la versión de la acción y la sintaxis de flujo de trabajo que se requiere para utilizar dicha acción. Para mantener estable a tu flujo de trabajo, aún cuando se hagan actualizaciones en una acción, puedes referenciar la versión de la acción a utilizar si especificas el número de etiqueta de Git o de Docker en tu archivo de flujo de trabajo.
+Puedes agregar una acción a tu flujo de trabajo si la referencias en tu archivo de flujo de trabajo.
+
+### Agregar una acción desde {% data variables.product.prodname_marketplace %}
+
+La página de descripción de una acción incluye la versión de la acción y la sintaxis de flujo de trabajo que se necesita para usar la acción. Para mantener estable a tu flujo de trabajo, aún cuando se hagan actualizaciones en una acción, puedes referenciar la versión de la acción a utilizar si especificas el número de etiqueta de Git o de Docker en tu archivo de flujo de trabajo.
1. Navega hasta la acción que deseas usar en tu flujo de trabajo.
1. En "Installation" (Instalación), haz clic en {% octicon "clippy" aria-label="The edit icon" %} para copiar la sintaxis del flujo de trabajo. 
@@ -55,6 +60,66 @@ Las páginas de listado de acciones incluyen la versión de la acción y la sint
{% endif %}
+### Agregar una acción desde el mismo repositorio
+
+Si se define una acción en el mismo repositorio en el que tu archivo de flujo de trabajo usa la acción, puedes hacer referencia a la acción con `{owner}/{repo}@{ref}` o la sintaxis `./path/to/dir` en tu archivo de flujo de trabajo.
+
+Ejemplo de estructura de archivo de repositorio:
+
+```
+|-- hello-world (repository)
+| |__ .github
+| └── workflows
+| └── my-first-workflow.yml
+| └── actions
+| |__ hello-world-action
+| └── action.yml
+```
+
+Ejemplo de archivo de flujo de trabajo:
+
+```yaml
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ # Este paso revisa una copia de tu repositorio.
+ - uses: actions/checkout@v2
+ # Este paso hace referencia al directorio que contiene la acción.
+ - uses: ./.github/actions/hello-world-action
+```
+
+El archivo `action.yml` se utiliza para proporcionar metadatos para la acción. Aprende sobre el contenido de este archivo en la sección "[Sintaxis de metadatos para las GitHub Actions](/actions/creating-actions/metadata-syntax-for-github-actions)."
+
+### Agregar una acción desde un repositorio diferente
+
+Si se define una acción en un repositorio diferente del de tu archivo de flujo de trabajo, puedes referenciarla con la sintaxis `{owner}/{repo}@{ref}` en tu archivo de flujo de trabajo.
+
+La acción debe almacenarse en un repositorio público{% if internal-actions %} o interno que se configure para permitir el acceso a los flujos de trabajo. Para obtener más información, consulta la sección "[Compartir acciones y flujos de trabajo con tu empresa](/actions/creating-actions/sharing-actions-and-workflows-with-your-enterprise)".{% else %}.{% endif %}
+
+```yaml
+jobs:
+ my_first_job:
+ steps:
+ - name: My first step
+ uses: actions/setup-node@v1.1.0
+```
+
+### Hacer referencia a un contenedor en Docker Hub
+
+Si se define una acción en una imagen de contenedor Docker publicada en Docker Hub, debes hacer referencia a la acción con la sintaxis `docker://{image}:{tag}` en tu archivo de flujo de trabajo. Para proteger tu código y tus datos, te recomendamos que verifiques la integridad de la imagen del contenedor Docker de Docker Hub antes de usarla en tu flujo de trabajo.
+
+```yaml
+jobs:
+ my_first_job:
+ steps:
+ - name: My first step
+ uses: docker://alpine:3.8
+```
+
+Para encontrar algunos ejemplos de acciones de Docker, consulta el [flujo de trabajo de Docker-image.yml](https://github.com/actions/starter-workflows/blob/main/ci/docker-image.yml) y la sección "[Crear una acción de contenedor de Docker](/articles/creating-a-docker-container-action)".
+
+
## Utilizar la administración de lanzamientos para tus acciones personalizadas
Los creadores de una acción comunitaria tienen la opción de utilizar etiquetas, ramas, o valores de SHA para administrar los lanzamientos de la acción. Similar a cualquier dependencia, debes indicar la versión de la acción que te gustaría utilizar basándote en tu comodidad con aceptar automáticamente las actualizaciones para dicha acción.
@@ -125,51 +190,6 @@ Predeterminadamente, puedes utilizar la mayoría de las
acciones oficiales que crea {% data variables.product.prodname_dotcom %} en {% data variables.product.prodname_ghe_managed %}. Para obtener más información, consulta la sección "[Utilizar las acciones en {% data variables.product.prodname_ghe_managed %}](/admin/github-actions/using-actions-in-github-ae)".
{% endif %}
-## Hacer referencia a una acción en el mismo repositorio en el que un archivo de flujo de trabajo usa la acción
-
-Si se define una acción en el mismo repositorio en el que tu archivo de flujo de trabajo usa la acción, puedes hacer referencia a la acción con `{owner}/{repo}@{ref}` o la sintaxis `./path/to/dir` en tu archivo de flujo de trabajo.
-
-Ejemplo de estructura de archivo de repositorio:
-
-```
-|-- hello-world (repository)
-| |__ .github
-| └── workflows
-| └── my-first-workflow.yml
-| └── actions
-| |__ hello-world-action
-| └── action.yml
-```
-
-Ejemplo de archivo de flujo de trabajo:
-
-```yaml
-jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- # Este paso revisa una copia de tu repositorio.
- - uses: actions/checkout@v2
- # Este paso hace referencia al directorio que contiene la acción.
- - uses: ./.github/actions/hello-world-action
-```
-
-El archivo `action.yml` se utiliza para proporcionar metadatos para la acción. Aprende sobre el contenido de este archivo en la sección "[Sintaxis de metadatos para las GitHub Actions](/actions/creating-actions/metadata-syntax-for-github-actions)"
-
-## Hacer referencia a un contenedor en Docker Hub
-
-Si se define una acción en una imagen de contenedor Docker publicada en Docker Hub, debes hacer referencia a la acción con la sintaxis `docker://{image}:{tag}` en tu archivo de flujo de trabajo. Para proteger tu código y tus datos, te recomendamos que verifiques la integridad de la imagen del contenedor Docker de Docker Hub antes de usarla en tu flujo de trabajo.
-
-```yaml
-jobs:
- my_first_job:
- steps:
- - name: My first step
- uses: docker://alpine:3.8
-```
-
-Para encontrar algunos ejemplos de acciones de Docker, consulta el [flujo de trabajo de Docker-image.yml](https://github.com/actions/starter-workflows/blob/main/ci/docker-image.yml) y la sección "[Crear una acción de contenedor de Docker](/articles/creating-a-docker-container-action)".
-
## Pasos siguientes
Para seguir aprendiendo sobre las {% data variables.product.prodname_actions %}, consulta la sección "[Características esenciales de las {% data variables.product.prodname_actions %}](/actions/learn-github-actions/essential-features-of-github-actions)".
diff --git a/translations/es-ES/content/actions/learn-github-actions/understanding-github-actions.md b/translations/es-ES/content/actions/learn-github-actions/understanding-github-actions.md
index 5467eae24d..4ccdf15341 100644
--- a/translations/es-ES/content/actions/learn-github-actions/understanding-github-actions.md
+++ b/translations/es-ES/content/actions/learn-github-actions/understanding-github-actions.md
@@ -42,7 +42,7 @@ Tu repositorio puede tener varios flujos de trabajo dentro de él, cada uno de l
{% ifversion fpt or ghes > 3.3 or ghae-issue-4757 or ghec %}Puedes referenciar un flujo de trabajo dentro de otro flujo de trabajo, consulta la sección "[Reutilizar flujos de trabajo](/actions/learn-github-actions/reusing-workflows)".{% endif %}
-For more information about workflows, see "[Using workflows](/actions/using-workflows)."
+Para obtener más información sobre los flujos de trabajo, consulta la sección "[Utilizar flujos de trabajo](/actions/using-workflows)".
### Eventos
@@ -56,7 +56,7 @@ Un job es un conjunto de _pasos_ en un flujo de trabajo, los cuales se ejecutan
Puedes configurar las dependencias de un job con otros jobs; predeterminadamente, los jobs no tienen dependencias y se ejecutan en paralelo entre ellos. Cuando un job lleva una dependencia a otro job, este esperará a que el job dependiente se complete antes de que pueda ejecutarse. Por ejemplo, puedes tener jobs de compilación múltiple para arquitecturas diferentes que no tengan dependencias y un job de empaquetado que sea dependiente de estos jobs. Los jobs de compilación se ejecutarán en paralelo y, cuando se hayan completado con éxito, se ejecutará el job de empaquetado.
-For more information about jobs, see "[Using jobs](/actions/using-jobs)."
+Para obtener más información sobre los jobs, consulta la sección "[Utilizar jobs](/actions/using-jobs)".
### Acciones
@@ -64,6 +64,8 @@ Una _acción_ es una aplicación personalizada para la plataforma de {% data var
Puedes escribir tus propias acciones o puedes encontrar acciones para utilizar en tus flujos de trabajo dentro de {% data variables.product.prodname_marketplace %}.
+{% data reusables.actions.internal-actions-summary %}
+
Para obtener más información, consulta la sección "[Crear acciones](/actions/creating-actions)".
### Ejecutores
diff --git a/translations/es-ES/content/actions/managing-workflow-runs/re-running-workflows-and-jobs.md b/translations/es-ES/content/actions/managing-workflow-runs/re-running-workflows-and-jobs.md
index ebb4056bdc..92859bfeea 100644
--- a/translations/es-ES/content/actions/managing-workflow-runs/re-running-workflows-and-jobs.md
+++ b/translations/es-ES/content/actions/managing-workflow-runs/re-running-workflows-and-jobs.md
@@ -1,6 +1,6 @@
---
-title: Re-running workflows and jobs
-intro: You can re-run a workflow run up to 30 days after its initial run.
+title: Volver a ejecutar flujos de trabajo y jobs
+intro: Puedes volver a ejecutar una ejecución de flujo de trabajo hasta 30 días después de su ejecución inicial.
permissions: People with write permissions to a repository can re-run workflows in the repository.
miniTocMaxHeadingLevel: 3
redirect_from:
@@ -15,9 +15,9 @@ versions:
{% data reusables.actions.enterprise-beta %}
{% data reusables.actions.enterprise-github-hosted-runners %}
-## Re-running all the jobs in a workflow
+## Volver a ejecutar todos los jobs en un flujo de trabajo
-El volver a ejecutar un flujo de trabajo utiliza el mismo `GITHUB_SHA` (SHA de confirmación) y `GITHUB_REF` (ref de Git) del evento original que activó la ejecución de flujo de trabajo. You can re-run a workflow for up to 30 days after the initial run.
+El volver a ejecutar un flujo de trabajo utiliza el mismo `GITHUB_SHA` (SHA de confirmación) y `GITHUB_REF` (ref de Git) del evento original que activó la ejecución de flujo de trabajo. Puedes volver a ejecutar un flujo de trabajo hasta por hasta 30 días después de la ejecución inicial.
{% webui %}
@@ -26,7 +26,7 @@ El volver a ejecutar un flujo de trabajo utiliza el mismo `GITHUB_SHA` (SHA de c
{% data reusables.repositories.navigate-to-workflow %}
{% data reusables.repositories.view-run %}
{% ifversion fpt or ghes > 3.2 or ghae-issue-4721 or ghec %}
-1. En la esquina superior derecha del flujo de trabajo, utiliza el menú desplegable **Volver a ejecutar jobs** y selecciona **Volver a ejecutar todos los jobs** 
+1. En la esquina superior derecha del flujo de trabajo, utiliza el menú desplegable **Volver a ejecutar jobs** y selecciona **Volver a ejecutar todos los jobs** 
{% endif %}
{% ifversion ghes < 3.3 or ghae %}
1. En la esquina superior derecha del flujo de trabajo, utiliza el menú desplegable **Volver a ejecutar jobs** y selecciona **Volver a ejecutar todos los jobs**. 
@@ -53,15 +53,15 @@ gh run watch
{% endcli %}
{% ifversion fpt or ghes > 3.2 or ghae-issue-4721 or ghec %}
-### Reviewing previous workflow runs
+### Revisar las ejecuciones de flujo de trabajo anteriores
-You can view the results from your previous attempts at running a workflow. You can also view previous workflow runs using the API. Para obtener más información, consulta la sección "[Obtener una ejecución de flujo de trabajo](/rest/reference/actions#get-a-workflow-run)".
+Puedes ver los resultados desde tus intentos anteriores para ejecutar un flujo de trabajo. También puedes ver las ejecuciones de flujo de trabajo anteriores utilizando la API. Para obtener más información, consulta la sección "[Obtener una ejecución de flujo de trabajo](/rest/reference/actions#get-a-workflow-run)".
{% data reusables.repositories.navigate-to-repo %}
{% data reusables.repositories.actions-tab %}
{% data reusables.repositories.navigate-to-workflow %}
{% data reusables.repositories.view-run %}
-1. Any previous run attempts are shown in the left pane. 
-1. Click an entry to view its results.
+1. Cualquier intento de ejecución anterior se muestra en el panel izquierdo. 
+1. Haz clic en una entrada para ver sus resultados.
{% endif %}
diff --git a/translations/es-ES/content/actions/publishing-packages/publishing-java-packages-with-gradle.md b/translations/es-ES/content/actions/publishing-packages/publishing-java-packages-with-gradle.md
index d00601b490..12d581031b 100644
--- a/translations/es-ES/content/actions/publishing-packages/publishing-java-packages-with-gradle.md
+++ b/translations/es-ES/content/actions/publishing-packages/publishing-java-packages-with-gradle.md
@@ -105,7 +105,7 @@ jobs:
```
{% data reusables.github-actions.gradle-workflow-steps %}
-1. Runs the [`gradle/gradle-build-action`](https://github.com/gradle/gradle-build-action) action with the `publish` argument to publish to the `OSSRH` Maven repository. La variable de entorno `MAVEN_USERNAME` se establecerá con los contenidos de tu `OSSRH_USERNAME` secreto, y la variable de entorno `MAVEN_PASSWORD` se establecerá con los contenidos de tu `OSSRH_TOKEN` secreto.
+1. Ejecuta la acción [`gradle/gradle-build-action`](https://github.com/gradle/gradle-build-action) con el argumento `publish` para publicar en el repositorio `OSSRH` de Maven. La variable de entorno `MAVEN_USERNAME` se establecerá con los contenidos de tu `OSSRH_USERNAME` secreto, y la variable de entorno `MAVEN_PASSWORD` se establecerá con los contenidos de tu `OSSRH_TOKEN` secreto.
Para obtener más información acerca del uso de secretos en tu flujo de trabajo, consulta "[Crear y usar secretos cifrados](/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)".
@@ -175,7 +175,7 @@ jobs:
```
{% data reusables.github-actions.gradle-workflow-steps %}
-1. Runs the [`gradle/gradle-build-action`](https://github.com/gradle/gradle-build-action) action with the `publish` argument to publish to {% data variables.product.prodname_registry %}. La variable de entorno `GITHUB_TOKEN` se establecerá con el contenido del `GITHUB_TOKEN` secreto. {% ifversion fpt or ghes > 3.1 or ghae or ghec %}La clave de `permissions` especifica el acceso que permitirá el secreto del `GITHUB_TOKEN`.{% endif %}
+1. Ejecuta la acción [`gradle/gradle-build-action`](https://github.com/gradle/gradle-build-action) con el argumento `publish` para publicar al {% data variables.product.prodname_registry %}. La variable de entorno `GITHUB_TOKEN` se establecerá con el contenido del `GITHUB_TOKEN` secreto. {% ifversion fpt or ghes > 3.1 or ghae or ghec %}La clave de `permissions` especifica el acceso que permitirá el secreto del `GITHUB_TOKEN`.{% endif %}
Para obtener más información acerca del uso de secretos en tu flujo de trabajo, consulta "[Crear y usar secretos cifrados](/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)".
@@ -256,6 +256,6 @@ jobs:
```
{% data reusables.github-actions.gradle-workflow-steps %}
-1. Runs the [`gradle/gradle-build-action`](https://github.com/gradle/gradle-build-action) action with the `publish` argument to publish to the `OSSRH` Maven repository and {% data variables.product.prodname_registry %}. La variable de entorno `MAVEN_USERNAME` se establecerá con los contenidos de tu `OSSRH_USERNAME` secreto, y la variable de entorno `MAVEN_PASSWORD` se establecerá con los contenidos de tu `OSSRH_TOKEN` secreto. La variable de entorno `GITHUB_TOKEN` se establecerá con el contenido del `GITHUB_TOKEN` secreto. {% ifversion fpt or ghes > 3.1 or ghae or ghec %}La clave de `permissions` especifica el acceso que permitirá el secreto del `GITHUB_TOKEN`.{% endif %}
+1. Ejecuta la acción [`gradle/gradle-build-action`](https://github.com/gradle/gradle-build-action) con el argumento `publish` para publicar en el repositorio `OSSRH` de Maven y en el {% data variables.product.prodname_registry %}. La variable de entorno `MAVEN_USERNAME` se establecerá con los contenidos de tu `OSSRH_USERNAME` secreto, y la variable de entorno `MAVEN_PASSWORD` se establecerá con los contenidos de tu `OSSRH_TOKEN` secreto. La variable de entorno `GITHUB_TOKEN` se establecerá con el contenido del `GITHUB_TOKEN` secreto. {% ifversion fpt or ghes > 3.1 or ghae or ghec %}La clave de `permissions` especifica el acceso que permitirá el secreto del `GITHUB_TOKEN`.{% endif %}
Para obtener más información acerca del uso de secretos en tu flujo de trabajo, consulta "[Crear y usar secretos cifrados](/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)".
diff --git a/translations/es-ES/content/actions/security-guides/security-hardening-for-github-actions.md b/translations/es-ES/content/actions/security-guides/security-hardening-for-github-actions.md
index 362b14eeac..80516f0aec 100644
--- a/translations/es-ES/content/actions/security-guides/security-hardening-for-github-actions.md
+++ b/translations/es-ES/content/actions/security-guides/security-hardening-for-github-actions.md
@@ -156,7 +156,7 @@ Para ayudarte a mitigar el resigo de un token expuesto, considera restringir los
{% ifversion fpt or ghec or ghae-issue-4856 %}
-## Using OpenID Connect to access cloud resources
+## Utilizar OpenID connect para acceder a los recursos en la nube
{% data reusables.actions.about-oidc-short-overview %}
@@ -196,6 +196,12 @@ Puedes ayudar a mitigar este riesgo si sigues estas buenas prácticas:
El mismo principio que se describió anteriormente para utilizar acciones de terceros también aplica para los flujos de trabajo de terceros. Puedes ayudar a mitigar los riesgos asociados con la reutilización de flujos de trabajo si sigues las mismas buenas prácticas que se describen anteriormente. Para obtener más información, consulta la sección "[Reutilizar flujos de trabajo](/actions/learn-github-actions/reusing-workflows)".
{% endif %}
+{% if internal-actions %}
+## Permitir que los flujos de trabajo accedan a los repositorios internos
+
+{% data reusables.actions.outside-collaborators-internal-actions %} Para obtener más información, consulta la sección "[Compartir acciones y flujos de trabajo con tu empresa](/actions/creating-actions/sharing-actions-and-workflows-with-your-enterprise)".
+{% endif %}
+
## Impacto potencial de un ejecutor puesto en riesgo
Estas secciones consideran algunos de los pasos que puede llevar a cabo un atacante si pueden ejecutar comandos malintencionados en un ejecutor de {% data variables.product.prodname_actions %}.
@@ -232,7 +238,7 @@ El servidor atacante puede utilizar la API de {% ifversion fpt or ghec %}{% data
## Considerar acceso entre repositorios
-{% data variables.product.prodname_actions %} tiene un alcance intencional para un solo repositorio por vez. El `GITHUB_TOKEN` otorga el mismo nivel de acceso que el de un usuario con acceso de escritura, ya que cualquier usuario con este tipo de acceso puede acceder al token si crea o modifica un archivo de flujo de trabajo {% ifversion fpt or ghes > 3.1 or ghae or ghec %}, lo cual eleva los permisos del `GITHUB_TOKEN` en caso de que sea necesario{% endif %}. Los usuarios tienen permisos específicos para cada repositorio, así que, permitir que el `GITHUB_TOKEN` de un repositorio otorgue acceso a otro de ellos impactará el modelo de permisos de {% data variables.product.prodname_dotcom %} si no se implementa con cuidado. De forma similar, se debe tener cuidado al agregar tokens de autenticación de {% data variables.product.prodname_dotcom %} a un flujo de trabajo, ya que esto también puede afectar el modelo de permisos de {% data variables.product.prodname_dotcom %} al otorgar inadvertidamente un acceso amplio a los colaboradores.
+{% data variables.product.prodname_actions %} tiene el alcance intencional de un solo repositorio a la vez. El `GITHUB_TOKEN` otorga el mismo nivel de acceso que el de un usuario con acceso de escritura, ya que cualquier usuario con este tipo de acceso puede acceder al token si crea o modifica un archivo de flujo de trabajo {% ifversion fpt or ghes > 3.1 or ghae or ghec %}, lo cual eleva los permisos del `GITHUB_TOKEN` en caso de que sea necesario{% endif %}. Los usuarios tienen permisos específicos para cada repositorio, así que, permitir que el `GITHUB_TOKEN` de un repositorio otorgue acceso a otro de ellos impactará el modelo de permisos de {% data variables.product.prodname_dotcom %} si no se implementa con cuidado. De forma similar, se debe tener cuidado al agregar tokens de autenticación de {% data variables.product.prodname_dotcom %} a un flujo de trabajo, ya que esto también puede afectar el modelo de permisos de {% data variables.product.prodname_dotcom %} al otorgar inadvertidamente un acceso amplio a los colaboradores.
Tenemos [un plan en el itinerario de {% data variables.product.prodname_dotcom %}](https://github.com/github/roadmap/issues/74) para compatibilizar un flujo que permita acceso entre repositorios dentro de {% data variables.product.product_name %}, pero aún no es una característica compatible. Actualmente, la única forma de realizar interacciones privilegiadas entre repositorios es colocar un token de autenticación de {% data variables.product.prodname_dotcom %} o llave SSH como un secreto dentro del flujo de trabajo. Ya que muchos tipos de tokens de autenticación no permiten el acceso granular a recursos específicos, existe un riesgo significativo en el utilizar el tipo incorrecto de token, ya que puede otorgr un acceso mucho más amplio que lo que se espera.
diff --git a/translations/es-ES/content/actions/using-jobs/assigning-permissions-to-jobs.md b/translations/es-ES/content/actions/using-jobs/assigning-permissions-to-jobs.md
index 14586f95d6..0555ec7222 100644
--- a/translations/es-ES/content/actions/using-jobs/assigning-permissions-to-jobs.md
+++ b/translations/es-ES/content/actions/using-jobs/assigning-permissions-to-jobs.md
@@ -5,7 +5,7 @@ intro: Modify the default permissions granted to `GITHUB_TOKEN`.
versions:
fpt: '*'
ghes: '> 3.1'
- ghae: ghae-next
+ ghae: '*'
ghec: '*'
miniTocMaxHeadingLevel: 4
---
diff --git a/translations/es-ES/content/actions/using-jobs/using-a-build-matrix-for-your-jobs.md b/translations/es-ES/content/actions/using-jobs/using-a-build-matrix-for-your-jobs.md
index 616d3857b1..ff8e9d882a 100644
--- a/translations/es-ES/content/actions/using-jobs/using-a-build-matrix-for-your-jobs.md
+++ b/translations/es-ES/content/actions/using-jobs/using-a-build-matrix-for-your-jobs.md
@@ -1,6 +1,6 @@
---
title: Using a build matrix for your jobs
-shortTitle: Using a build matrix for your jobs
+shortTitle: Utilizar una matriz de compilación para tus jobs
intro: Create a build matrix and define variations for each job.
versions:
fpt: '*'
diff --git a/translations/es-ES/content/actions/using-jobs/using-concurrency.md b/translations/es-ES/content/actions/using-jobs/using-concurrency.md
index 2b17bde2d2..678eba500e 100644
--- a/translations/es-ES/content/actions/using-jobs/using-concurrency.md
+++ b/translations/es-ES/content/actions/using-jobs/using-concurrency.md
@@ -5,7 +5,7 @@ intro: Run a single job at a time.
versions:
fpt: '*'
ghes: '> 3.1'
- ghae: ghae-next
+ ghae: '*'
ghec: '*'
miniTocMaxHeadingLevel: 4
---
diff --git a/translations/es-ES/content/actions/using-jobs/using-conditions-to-control-job-execution.md b/translations/es-ES/content/actions/using-jobs/using-conditions-to-control-job-execution.md
index f8143d3332..34c4f4a7e5 100644
--- a/translations/es-ES/content/actions/using-jobs/using-conditions-to-control-job-execution.md
+++ b/translations/es-ES/content/actions/using-jobs/using-conditions-to-control-job-execution.md
@@ -1,6 +1,6 @@
---
title: Using conditions to control job execution
-shortTitle: Using conditions to control job execution
+shortTitle: Utilizar condiciones para controlar la ejecución de jobs
intro: Prevent a job from running unless your conditions are met.
versions:
fpt: '*'
diff --git a/translations/es-ES/content/actions/using-workflows/advanced-workflow-features.md b/translations/es-ES/content/actions/using-workflows/advanced-workflow-features.md
index 52b8210a23..02625d20ee 100644
--- a/translations/es-ES/content/actions/using-workflows/advanced-workflow-features.md
+++ b/translations/es-ES/content/actions/using-workflows/advanced-workflow-features.md
@@ -161,10 +161,13 @@ Un flujo de trabajo solo se ejecutará en un ejecutor que tenga todas las etique
Para aprender más acerca de las etiquetas auto-hospedadas, consulta la sección ["Utilizar etiquetas con los ejecutores auto-hospedados](/actions/hosting-your-own-runners/using-labels-with-self-hosted-runners)".
{% ifversion fpt or ghes %}
-To learn more about {% data variables.product.prodname_dotcom %}-hosted runner labels, see ["Supported runners and hardware resources"](/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources).
+Para aprender más sobre las etiquetas de los ejecutores hospedados en {% data variables.product.prodname_dotcom %}, consulta la sección ["Ejecutores y recursos de hardware compatibles"](/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources).
{% endif %}
+{% ifversion fpt or ghes > 3.3 or ghae-issue-4757 or ghec %}
+## Reutilizar flujos de trabajo
{% data reusables.actions.reusable-workflows %}
+{% endif %}
{% ifversion fpt or ghes > 3.0 or ghae or ghec %}
diff --git a/translations/es-ES/content/actions/using-workflows/creating-starter-workflows-for-your-organization.md b/translations/es-ES/content/actions/using-workflows/creating-starter-workflows-for-your-organization.md
index cd1068327b..fa6f529da8 100644
--- a/translations/es-ES/content/actions/using-workflows/creating-starter-workflows-for-your-organization.md
+++ b/translations/es-ES/content/actions/using-workflows/creating-starter-workflows-for-your-organization.md
@@ -86,7 +86,7 @@ This procedure demonstrates how to create a starter workflow and metadata file.
}
```
* `name` - **Required.** The name of the workflow. This is displayed in the list of available workflows.
- * `description` - **Required.** The description of the workflow. This is displayed in the list of available workflows.
+ * `description` - **Required.** The description of the workflow. Esta se muestra en la lista de flujos de trabajo disponibles.
* `iconName` - **Optional.** Specifies an icon for the workflow that's displayed in the list of workflows. The `iconName` must be the name of an SVG file, without the file name extension, stored in the `workflow-templates` directory. For example, an SVG file named `example-icon.svg` is referenced as `example-icon`.
* `categories` - **Opcional.** Define la categoría de lenguaje del flujo de trabajo. When a user views the available starter workflows for a repository, the workflows that match the identified language for the project are featured more prominently. Para obtener información sobre las categorías de lenguaje disponibles, consulta https://github.com/github/linguist/blob/master/lib/linguist/languages.yml.
* `filePatterns` - **Optional.** Allows the workflow to be used if the user's repository has a file in its root directory that matches a defined regular expression.
diff --git a/translations/es-ES/content/actions/using-workflows/events-that-trigger-workflows.md b/translations/es-ES/content/actions/using-workflows/events-that-trigger-workflows.md
index 85d300bc40..4bfc46ff9c 100644
--- a/translations/es-ES/content/actions/using-workflows/events-that-trigger-workflows.md
+++ b/translations/es-ES/content/actions/using-workflows/events-that-trigger-workflows.md
@@ -1397,6 +1397,61 @@ on: workflow_dispatch
Puedes configurar propiedades de entrada definidas personalmente, valores de entrada predeterminados y entradas requeridas para el evento directamente en tu flujo de trabajo. Cuando activas el evento, puedes proporcionar el `ref` y cualquier `inputs`. Cuando se ejecuta el flujod e trabajo, puedes acceder a los valores de entrada en el contexto de `github.event.inputs`. Para obtener más información, consulta "[Contextos](/actions/learn-github-actions/contexts)".
+{% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-5511 %}
+This example defines inputs called `logLevel`, `tags`, and `environment`. You pass values for these inputs to the workflow when you run it. This workflow then prints the values to the log, using the `github.event.inputs.logLevel`, `github.event.inputs.tags`, and `github.event.inputs.environment` context properties.
+
+{% raw %}
+```yaml
+on:
+ workflow_dispatch:
+ inputs:
+ logLevel:
+ description: 'Log level'
+ required: true
+ default: 'warning'
+ type: choice
+ options:
+ - info
+ - warning
+ - debug
+ tags:
+ description: 'Test scenario tags'
+ required: false
+ type: boolean
+ environment:
+ description: 'Environment to run tests against'
+ type: environment
+ required: true
+
+jobs:
+ log-the-inputs:
+ runs-on: ubuntu-latest
+ steps:
+ - run: |
+ echo "Log level: $LEVEL"
+ echo "Tags: $TAGS"
+ echo "Environment: $ENVIRONMENT"
+ env:
+ LEVEL: ${{ github.event.inputs.logLevel }}
+ TAGS: ${{ github.event.inputs.tags }}
+ ENVIRONMENT: ${{ github.event.inputs.environment }}
+```
+{% endraw %}
+
+If you run this workflow from a browser you must enter values for the required inputs manually before the workflow will run.
+
+
+
+You can also pass inputs when you run a workflow from a script, or by using {% data variables.product.prodname_cli %}. Por ejemplo:
+
+```
+gh workflow run run-tests.yml -f logLevel=warning -f tags=false -f environment=staging
+```
+
+For more information, see the {% data variables.product.prodname_cli %} information in "[Manually running a workflow](/actions/managing-workflow-runs/manually-running-a-workflow)."
+
+
+{% else %}
Este ejemplo define las entradas `name` y `home` y las imprime utilizando los contextos `github.event.inputs.name` y `github.event.inputs.home`. Si no se proporciona un `home`, se imprime el valor predeterminado 'The Octoverse'.
```yaml
@@ -1424,6 +1479,7 @@ jobs:
NAME: {% raw %}${{ github.event.inputs.name }}{% endraw %}
HOME: {% raw %}${{ github.event.inputs.home }}{% endraw %}
```
+{% endif %}
### `workflow_run`
@@ -1492,7 +1548,7 @@ jobs:
#### Ltimitar tu flujo de trabajo para que se ejecute con base a las ramas
-Puedes utilizar el filtro `branches` o `branches-ignore` para especificar en qué ramas se debe ejecutar el flujo de trabajo activador para poder activar tu flujo de trabajo. Para obtener más información, consulta la sección "[Sintaxis de flujo de trabajo para las GitHub Actions](/actions/learn-github-actions/workflow-syntax-for-github-actions#onworkflow_runbranchesbranches-ignore)". Por ejemplo, un flujo de trabajo con el siguiente activador solo se ejecutará cuando el flujo de trabajo que se llama `Build` se ejecute en una rama llamada `canary`.
+Puedes utilizar el filtro `branches` o `branches-ignore` para especificar en qué ramas se debe ejecutar el flujo de trabajo activador para poder activar tu flujo de trabajo. For more information, see "[Workflow syntax for GitHub Actions](/actions/learn-github-actions/workflow-syntax-for-github-actions#onworkflow_runbranchesbranches-ignore)." Por ejemplo, un flujo de trabajo con el siguiente activador solo se ejecutará cuando el flujo de trabajo que se llama `Build` se ejecute en una rama llamada `canary`.
```yaml
on:
diff --git a/translations/es-ES/content/actions/using-workflows/reusing-workflows.md b/translations/es-ES/content/actions/using-workflows/reusing-workflows.md
index 38d03332ff..5508a142ba 100644
--- a/translations/es-ES/content/actions/using-workflows/reusing-workflows.md
+++ b/translations/es-ES/content/actions/using-workflows/reusing-workflows.md
@@ -34,42 +34,42 @@ Si utilizas un flujo de trabajo desde un repositorio diferente, cualquier acció
Cuando un flujo de trabajo llamante activa uno reutilizable, el contexto `github` siempre se asocia con el flujo llamante. Se otorga acceso automáticamente al flujo de trabajo llamado para `github.token` y `secrets.GITHUB_TOKEN`. Para obtener más información sobre el contexto `github`, consulta la sección "[Sintaxis de contexto y expresión para GitHub Actions](/actions/reference/context-and-expression-syntax-for-github-actions#github-context)".
-### Reusable workflows and starter workflows
+### Flujos de trabajo reutilizables e iniciales
-Starter workflows allow everyone in your organization who has permission to create workflows to do so more quickly and easily. Cuando las personas crean un flujo de trabajo nuevo, pueden elegir un flujo de trabajo inicial y parte o todo el trabajo de escribir dicho flujo de trabajo se hará automáticamente. Within a starter workflow, you can also reference reusable workflows to make it easy for people to benefit from reusing centrally managed workflow code. If you use a tag or branch name when referencing the reusable workflow, you can ensure that everyone who reuses that workflow will always be using the same YAML code. However, if you reference a reusable workflow by a tag or branch, be sure that you can trust that version of the workflow. Para obtener más información, consulta la sección "[Fortalecimiento de seguridad para las {% data variables.product.prodname_actions %}](/actions/security-guides/security-hardening-for-github-actions#reusing-third-party-workflows)".
+Los flujos de trabajo iniciales permiten que toda persona en tu organización que tenga permiso para crear flujos de trabajo lo haga de forma más fácil y rápida. Cuando las personas crean un flujo de trabajo nuevo, pueden elegir un flujo de trabajo inicial y parte o todo el trabajo de escribir dicho flujo de trabajo se hará automáticamente. Dentro de un flujo de trabajo inicial, también puedes referenciar los flujos de trabajo reutilizables para hacer más fácil que las personas se beneficien de reutilizar el código de flujo de trabajo que se administra centralmente. Si utilizas un nombre de rama o etiqueta cuando referencias el flujo de trabajo reutilizable, puedes garantizar que todo aquél que reutilice ese flujo de trabajo siempre estará utilizando el mismo código de YAML. Sin embargo, si referencias un flujo de trabajo reutilizable mediante una etiqueta o rama, asegúrate de que puedas confiar en esa versión del flujo de trabajo. Para obtener más información, consulta la sección "[Fortalecimiento de seguridad para las {% data variables.product.prodname_actions %}](/actions/security-guides/security-hardening-for-github-actions#reusing-third-party-workflows)".
-For more information, see "[Creating starter workflows for your organization](/actions/learn-github-actions/creating-starter-workflows-for-your-organization)."
+Para obtener más información, consulta la sección "[Crear flujos de trabajo iniciales para tu organización](/actions/learn-github-actions/creating-starter-workflows-for-your-organization)".
## Acceso a los flujos de trabajo reutilizables
-A reusable workflow can be used by another workflow if {% ifversion ghes or ghec or ghae %}any{% else %}either{% endif %} of the following is true:
+Un flujo de trabajo reutilizable puede utilizar otro de ellos si {% ifversion ghes or ghec or ghae %}alguna{% else %}cualquiera{% endif %} de las siguientes condiciones es verdadera:
* Ambos flujos de trabajo están en el mismo repositorio.
-* The called workflow is stored in a public repository.{% ifversion ghes or ghec or ghae %}
-* El flujo de trabajo llamado se almacena en un repositorio interno y los ajustes de dicho repositorio permiten que se acceda a él. Para obtener más información, consulta la sección "[Administrar los ajustes de las {% data variables.product.prodname_actions %} en un repositorio](/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#allowing-access-to-components-in-an-internal-repository)".{% endif %}
+* El flujo de trabajo llamado se almacena en un repositorio público.{% ifversion ghes or ghec or ghae %}
+* El flujo de trabajo llamado se almacena en un repositorio interno y los ajustes de dicho repositorio permiten que se acceda a él. Para obtener más información, consulta la sección {% if internal-actions %}"[Compartir acciones y flujos de trabajo con tu empresa](/actions/creating-actions/sharing-actions-and-workflows-with-your-enterprise){% else %}"[Administrar los ajustes de las {% data variables.product.prodname_actions %} en un repositorio](/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#allowing-access-to-components-in-an-internal-repository){% endif %}".{% endif %}
-## Using runners
+## Utilizar ejecutores
{% ifversion fpt or ghes or ghec %}
### Utilizar los ejecutores hospedados en GitHub
-The assignment of {% data variables.product.prodname_dotcom %}-hosted runners is always evaluated using only the caller's context. Billing for {% data variables.product.prodname_dotcom %}-hosted runners is always associated with the caller. The caller workflow cannot use {% data variables.product.prodname_dotcom %}-hosted runners from the called repository. Para obtener más información, consulta la sección "[Acerca de los ejecutores hospedados en {% data variables.product.prodname_dotcom %}](/actions/using-github-hosted-runners/about-github-hosted-runners)".
+La asignación de ejecutores hospedados en {% data variables.product.prodname_dotcom %} siempre se evalúa utilizando únicamente el contexto del llamante. La facturación de los ejecutores hospedados en {% data variables.product.prodname_dotcom %} siempre se asocia con el llamador. El flujo de trabajo llamante no puede utilizar ejecutores hospedados en {% data variables.product.prodname_dotcom %} desde el repositorio llamado. Para obtener más información, consulta la sección "[Acerca de los ejecutores hospedados en {% data variables.product.prodname_dotcom %}](/actions/using-github-hosted-runners/about-github-hosted-runners)".
-### Using self-hosted runners
+### Utilizar ejecutores auto-hospedados
{% endif %}
-Called workflows can access self-hosted runners from caller's context. This means that a called workflow can access self-hosted runners that are:
-* In the caller repository
-* In the caller repository's organization{% ifversion ghes or ghec or ghae %} or enterprise{% endif %}, provided that the runner has been made available to the caller repository
+Los flujos de trabajo llamados pueden acceder a los ejecutores auto-hospedados desde el contexto del llamante. Esto significa que el flujo de trabajo llamado puede acceder a los ejecutores auto-hospedados que están:
+* En el repositorio del llamador
+* En la organización{% ifversion ghes or ghec or ghae %} o empresa{% endif %}, de la organización del repositorio, siempre y cuando se haya hecho disponible al ejecutor para el repositorio llamante
## Limitaciones
* Los flujos de trabajo reutilizables no pueden llamar a otros que también sean reutilizables.
* Los flujos de trabajo solo podrán usar a los reutilizables que se encuentren almacenados en un repositorio privado en caso de que estos también se encuentren en el mismo repositorio.
* Ninguna variable de ambiente que se configure en un contexto de `env` que se defina a nivel del flujo de trabajo en aquél llamante se propagará al flujo llamado. Para obtener más información sobre el contexto `env`, consulta la sección "[Sintaxis de contexto y expresión para GitHub Actions](/actions/reference/context-and-expression-syntax-for-github-actions#env-context)".
-* The `strategy` property is not supported in any job that calls a reusable workflow.
+* La propiedad `strategy` no es compatible en ningún job que llame a un flujo de trabajo reutilizable.
## Crear un flujo de trabajo reutilizable
@@ -82,11 +82,11 @@ on:
workflow_call:
```
-### Using inputs and secrets in a reusable workflow
+### Utilizar entradas y secretos en un flujo de trabajo reutilizable
-Puedes definir entradas y secretos, las cuales pueden pasarse desde el flujo de trabajo llamante y luego utilizarse dentro del flujo llamado. There are three stages to using an input or a secret in a reusable workflow.
+Puedes definir entradas y secretos, las cuales pueden pasarse desde el flujo de trabajo llamante y luego utilizarse dentro del flujo llamado. Existen tres etapas para utilizar una entrada o un secreto en un flujo de trabajo reutilizable.
-1. In the reusable workflow, use the `inputs` and `secrets` keywords to define inputs or secrets that will be passed from a caller workflow.
+1. En el flujo de trabajo reutilizable, utiliza las palabras clave `inputs` y `secrets` para definir entradas o secretos que se pasarán desde un flujo de trabajo llamante.
{% raw %}
```yaml
on:
@@ -101,7 +101,7 @@ Puedes definir entradas y secretos, las cuales pueden pasarse desde el flujo de
```
{% endraw %}
Para encontrar los detalles de la sintaxis para definir entradas y secretos, consulta [`on.workflow_call.inputs`](/actions/reference/workflow-syntax-for-github-actions#onworkflow_callinputs) y [`on.workflow_call.secrets`](/actions/reference/workflow-syntax-for-github-actions#onworkflow_callsecrets).
-1. Reference the input or secret in the reusable workflow.
+1. Referencia la entrada o secreto ene l flujo de trabajo reutilizable.
{% raw %}
```yaml
@@ -116,15 +116,15 @@ Puedes definir entradas y secretos, las cuales pueden pasarse desde el flujo de
token: ${{ secrets.envPAT }}
```
{% endraw %}
- In the example above, `envPAT` is an environment secret that's been added to the `production` environment. This environment is therefore referenced within the job.
+ En el ejemplo anterior, `envPAT` es un secreto de ambiente que se ha agregado al ambiente de `production`. Por lo tanto, este ambiente se referencia dentro del job.
{% note %}
- **Note**: Environment secrets are encrypted strings that are stored in an environment that you've defined for a repository. Environment secrets are only available to workflow jobs that reference the appropriate environment. Para obtener más información, consulta la sección "[Utilizar ambientes para despliegue](/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets)".
+ **Note**: Los secretos de ambiente son secuencias cifradas que se almacenan en un ambiente que hayas definido para un repositorio. Los secretos de ambiente solo se encuentran disponibles para los jobs de flujo de trabajo que referencian al ambiente adecuado. Para obtener más información, consulta la sección "[Utilizar ambientes para despliegue](/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets)".
{% endnote %}
-1. Pass the input or secret from the caller workflow.
+1. Pasa la entrada o secreto desde el flujo de trabajo llamante.
{% indented_data_reference reusables.actions.pass-inputs-to-reusable-workflows spaces=3 %}
@@ -201,7 +201,7 @@ Cuando llamas a un flujo de trabajo reutilizable, solo puedes utilizar las sigui
### Flujo de trabajo llamante de ejemplo
-Este archivo de flujo de trabajo llama a otros dos archivos de flujo de trabajo. The second of these, `workflow-B.yml` (shown in the [example reusable workflow](#example-reusable-workflow)), is passed an input (`username`) and a secret (`token`).
+Este archivo de flujo de trabajo llama a otros dos archivos de flujo de trabajo. Al segundo de estos, `workflow-B.yml` (el cual se muestra en el [flujo de trabajo reutilizable de ejemplo](#example-reusable-workflow)), se le pasa una entrada (`username`) y un secreto (`token`).
{% raw %}
```yaml{:copy}
@@ -225,11 +225,11 @@ jobs:
```
{% endraw %}
-## Using outputs from a reusable workflow
+## Utilizar salidas desde un flujo de trabajo reutilizable
-A reusable workflow may generate data that you want to use in the caller workflow. To use these outputs, you must specify them as the outputs of the reusable workflow.
+Un flujo de trabajo reutilizable podría generar datos que quieras utilizar en el flujo de trabajo llamante. Para utilizar estas salidas, debes especificarlas como las salidas del flujo de trabajo reutilizable.
-The following reusable workflow has a single job containing two steps. In each of these steps we set a single word as the output: "hello" and "world." In the `outputs` section of the job, we map these step outputs to job outputs called: `output1` and `output2`. In the `on.workflow_call.outputs` section we then define two outputs for the workflow itself, one called `firstword` which we map to `output1`, and one called `secondword` which we map to `output2`.
+Los siguientes flujos de trabajo reutilizables tienen un solo job que contiene dos pasos. En cada uno de estos pasos, configuramos una sola palabra como la salida: "hello" y "world". En la sección de `outputs` del job, mapeamos estas salidas de paso a las salidas de jobs llamadas: `output1` y `output2`. En la sección de `on.workflow_call.outputs`, definimos entonces a las dos salidas del mismo flujo de trabajo, una llamada `firstword`, la cual mapeamos a `output1`, y otra llamada `secondword`, la cual mapeamos a `output2`.
{% raw %}
```yaml{:copy}
@@ -262,7 +262,7 @@ jobs:
```
{% endraw %}
-We can now use the outputs in the caller workflow, in the same way you would use the outputs from a job within the same workflow. We reference the outputs using the names defined at the workflow level in the reusable workflow: `firstword` and `secondword`. In this workflow, `job1` calls the reusable workflow and `job2` prints the outputs from the reusable workflow ("hello world") to standard output in the workflow log.
+Ahora podemos utilizar las salidas en el flujo de trabajo llamante, de la misma forma en la que utilizarías las salidas de un job dentro del mismo flujo de trabajo. Referenciamos las salidas utilizando los nombres que se definen a nivel del flujo de trabajo en el reutilizable: `firstword` y `secondword`. En este flujo de trabajo, `job1` llama al flujo de trabajo reutilizable y `job2` imprime las salidas desde el flujo de trabajo reutilizable ("hello world") en una salida estándar en la bitácora del mismo.
{% raw %}
```yaml{:copy}
@@ -283,9 +283,9 @@ jobs:
```
{% endraw %}
-For more information on using job outputs, see "[Workflow syntax for {% data variables.product.prodname_actions %}](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idoutputs)."
+Para obtener más información sobre cómo utilizar las salidas de los jobs, consulta la sección "[Sintaxis de flujo de trabajo para las {% data variables.product.prodname_actions %}](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idoutputs)".
-## Monitoring which workflows are being used
+## Monitorear qué flujos de trabajo se están utilizando
Puedes utilizar la API de REST de {% data variables.product.prodname_dotcom %} para monitorear cómo se utilizan los flujos de trabajo reutilizables. La acción de bitácora de auditoría `prepared_workflow_job` se activa cuando se inicia un job de flujo de trabajo. Entre los datos registrados se incluyen:
* `repo` - la organización/repositorio en donde se ubica el job de flujo de trabajo. Para un job que llama a otro flujo de trabajo, esta es la organización/repositorio del flujo llamador.
diff --git a/translations/es-ES/content/actions/using-workflows/sharing-workflows-secrets-and-runners-with-your-organization.md b/translations/es-ES/content/actions/using-workflows/sharing-workflows-secrets-and-runners-with-your-organization.md
index e299fd66cb..60cc56399a 100644
--- a/translations/es-ES/content/actions/using-workflows/sharing-workflows-secrets-and-runners-with-your-organization.md
+++ b/translations/es-ES/content/actions/using-workflows/sharing-workflows-secrets-and-runners-with-your-organization.md
@@ -20,11 +20,29 @@ type: how_to
Si necesitas compartir flujos de trabajo y otras características de {% data variables.product.prodname_actions %} con tu equipo, entonces considera colaborar dentrod e una organización de {% data variables.product.prodname_dotcom %}. Una organización te permite almacenar centralmente y administrar secretos, artefactos y ejecutores auto-hospedados. You can also create starter workflows in the `.github` repository and share them with other users in your organization.
-## Utilizar flujos de trabajo iniciales
+## Sharing {% if internal-actions %}actions and {% endif %}workflows
-{% data reusables.actions.workflow-organization-templates %} Para obtener más información, consulta la sección "[Crear flujos de trabajo iniciales para tu organización](/actions/using-workflows/creating-starter-workflows-for-your-organization)".
+{% if internal-actions %}
+You can share both individual actions and entire workflows with your organization, with or without publishing the actions or workflows publicly. You can reuse actions and workflows exactly by referencing them in your workflow file, and you can create starter workflows that provide templates for new workflows.
+{% else %}
+Your organization can share workflows by reusing the workflows exactly or by creating starter workflows that provide templates for new workflows.
+{% endif %}
+
+{% if internal-actions %}
+### Sharing actions with your enterprise
+
+{% data reusables.actions.internal-actions-summary %}
+{% endif %}
+
+{% ifversion fpt or ghes > 3.3 or ghae-issue-4757 or ghec %}
+### Reutilizar flujos de trabajo
{% data reusables.actions.reusable-workflows %}
+{% endif %}
+
+### Utilizar flujos de trabajo iniciales
+
+{% data reusables.actions.workflow-organization-templates %} Para obtener más información, consulta la sección "[Crear flujos de trabajo iniciales para tu organización](/actions/using-workflows/creating-starter-workflows-for-your-organization)".
## Compartir secretos dentro de una organización
diff --git a/translations/es-ES/content/actions/using-workflows/using-starter-workflows.md b/translations/es-ES/content/actions/using-workflows/using-starter-workflows.md
index 6ee811f304..1ffee4b6e2 100644
--- a/translations/es-ES/content/actions/using-workflows/using-starter-workflows.md
+++ b/translations/es-ES/content/actions/using-workflows/using-starter-workflows.md
@@ -28,7 +28,7 @@ topics:
{% data variables.product.product_name %} offers starter workflows for a variety of languages and tooling. Cuando configuras flujos de trabajo en tu repositorio, {% data variables.product.product_name %} analiza el código en tu repositorio y recomienda flujos de trabajo con base en el lenguaje y marco de trabajo de este. Por ejemplo, si utilizas [Node.js](https://nodejs.org/en/), {% data variables.product.product_name %} sugerirá un archivo de flujo de trabajo inicial que instale tus paquetes de Node.js y ejecute tus pruebas.{% if actions-starter-template-ui %} Puedes buscar y filtrar para encontrar flujos de trabajo inicial relevantes.{% endif %}
-You can also create your own starter workflow to share with your organization. These starter workflows will appear alongside the {% data variables.product.product_name %}-provided starter workflows. For more information, see "[Creating starter workflows for your organization](/actions/learn-github-actions/creating-starter-workflows-for-your-organization)."
+You can also create your own starter workflow to share with your organization. These starter workflows will appear alongside the {% data variables.product.product_name %}-provided starter workflows. Para obtener más información, consulta la sección "[Crear flujos de trabajo iniciales para tu organización](/actions/learn-github-actions/creating-starter-workflows-for-your-organization)".
## Utilizar flujos de trabajo iniciales
@@ -37,7 +37,7 @@ Anyone with write permission to a repository can set up {% data variables.produc
{% data reusables.repositories.navigate-to-repo %}
{% data reusables.repositories.actions-tab %}
1. Si ya tienes un flujo de trabajo en tu repositorio, haz clic en **Flujo de trabajo nuevo**.
-1. Find the starter workflow that you want to use, then click **Set up this workflow**.{% if actions-starter-template-ui %} To help you find the starter workflow that you want, you can search for keywords or filter by category.{% endif %}
+1. Encuentra el flujo de trabajo inicial que quieras utilizar y luego haz clic en **Configurar este flujo de trabajo**.{% if actions-starter-template-ui %} Para ayudarte a encontrar el flujo de trabajo inicial que quieres, puedes buscar palabras clave o filtrar por categoría.{% endif %}
1. If the starter workflow contains comments detailing additional setup steps, follow these steps. Many of the starter workflow have corresponding guides. Para obtener más información, consulta [las guías de {% data variables.product.prodname_actions %}](/actions/guides).
1. Some starter workflows use secrets. Por ejemplo, {% raw %}`${{ secrets.npm_token }}`{% endraw %}. If the starter workflow uses a secret, store the value described in the secret name as a secret in your repository. Para obtener más información, consulta "[Secretos cifrados](/actions/reference/encrypted-secrets)".
1. Opcionalmente, haz cambios adicionales. Por ejemplo, puede que quieras cambiar el valor de `on` para que este cambie cuando se ejecute el flujo de trabajo.
diff --git a/translations/es-ES/content/actions/using-workflows/workflow-commands-for-github-actions.md b/translations/es-ES/content/actions/using-workflows/workflow-commands-for-github-actions.md
index f7f70d4705..9c9d2c6839 100644
--- a/translations/es-ES/content/actions/using-workflows/workflow-commands-for-github-actions.md
+++ b/translations/es-ES/content/actions/using-workflows/workflow-commands-for-github-actions.md
@@ -308,7 +308,7 @@ La variable `STATE_processID` se encontrará entonces exclusivamente disponible
console.log("The running PID from the main action is: " + process.env.STATE_processID);
```
-## Archivos de ambiente
+## Environment files
Durante la ejecución de un flujo de trabajo, el ejecutor genera archivos temporales que pueden utilizarse para llevar a cabo ciertas acciones. La ruta a estos archivos se expone a través de variables de ambiente. Necesitarás utilizar codificación UTF-8 cuando escribas en estos archivos para garantizar el procesamiento adecuado de los comandos. Se pueden escribir varios comandos en el mismo archivo, separados por líneas nuevas.
@@ -347,16 +347,10 @@ Puedes obtener más detalles sobre el UTF-8 y PowerShell Core en esta genial [re
## Configurar una variable de ambiente
``` bash
-echo "{name}={value}" >> $GITHUB_ENV
+echo "{environment_variable_name}={value}" >> $GITHUB_ENV
```
-Crea o actualiza una variable de ambiente para cualquier paso que sea el siguiente en ejecutarse en un job. El paso que crea o actualiza la variable de ambiente no tiene acceso al valor nuevo, pero todos los pasos subsecuentes en un job tendrán acceso. Las variables de entorno distinguen mayúsculas de minúsculas y puedes incluir puntuación.
-
-{% note %}
-
-**Nota:** Las variables de ambiente deben referenciarse explícitamente utilizando el [contexto`env`](/actions/reference/context-and-expression-syntax-for-github-actions#env-context) en la sintaxis de expresión o mediante el uso del archivo `$GITHUB_ENV` directamente; las variables de ambiente no están disponibles implícitamente en los comandos del shell.
-
-{% endnote %}
+You can make an environment variable available to any subsequent steps in a workflow job by defining or updating the environment variable and writing this to the `GITHUB_ENV` environment file. El paso que crea o actualiza la variable de ambiente no tiene acceso al valor nuevo, pero todos los pasos subsecuentes en un job tendrán acceso. The names of environment variables are case-sensitive, and you can include punctuation. Para obtener más información, consulta "[Variables del entorno](/actions/learn-github-actions/environment-variables)".
### Ejemplo
diff --git a/translations/es-ES/content/actions/using-workflows/workflow-syntax-for-github-actions.md b/translations/es-ES/content/actions/using-workflows/workflow-syntax-for-github-actions.md
index 0d66b2fb49..839b3ca19e 100644
--- a/translations/es-ES/content/actions/using-workflows/workflow-syntax-for-github-actions.md
+++ b/translations/es-ES/content/actions/using-workflows/workflow-syntax-for-github-actions.md
@@ -183,7 +183,7 @@ on:
logLevel:
description: 'Log level'
required: true
- default: 'warning' {% ifversion ghec or ghes > 3.3 or ghae-issue-5511 %}
+ default: 'warning' {% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-5511 %}
type: choice
options:
- info
@@ -191,7 +191,7 @@ on:
- debug {% endif %}
tags:
description: 'Test scenario tags'
- required: false {% ifversion ghec or ghes > 3.3 or ghae-issue-5511 %}
+ required: false {% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-5511 %}
type: boolean
environment:
description: 'Environment to run tests against'
diff --git a/translations/es-ES/content/admin/advanced-security/enabling-github-advanced-security-for-your-enterprise.md b/translations/es-ES/content/admin/advanced-security/enabling-github-advanced-security-for-your-enterprise.md
index d2d205a75c..913c8e4feb 100644
--- a/translations/es-ES/content/admin/advanced-security/enabling-github-advanced-security-for-your-enterprise.md
+++ b/translations/es-ES/content/admin/advanced-security/enabling-github-advanced-security-for-your-enterprise.md
@@ -56,7 +56,7 @@ For guidance on a phased deployment of GitHub Advanced Security, see "[Deploying
- {% data variables.product.prodname_code_scanning_capc %}, see "[Configuring {% data variables.product.prodname_code_scanning %} for your appliance](/admin/advanced-security/configuring-code-scanning-for-your-appliance#prerequisites-for-code-scanning)."
- {% data variables.product.prodname_secret_scanning_caps %}, see "[Configuring {% data variables.product.prodname_secret_scanning %} for your appliance](/admin/advanced-security/configuring-secret-scanning-for-your-appliance#prerequisites-for-secret-scanning)."{% endif %}
- - {% data variables.product.prodname_dependabot %}, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} on your enterprise account](/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account)."
+ - {% data variables.product.prodname_dependabot %}, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} for your enterprise](/admin/configuration/configuring-github-connect/enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise)."
## Enabling and disabling {% data variables.product.prodname_GH_advanced_security %} features
diff --git a/translations/es-ES/content/admin/advanced-security/overview-of-github-advanced-security-deployment.md b/translations/es-ES/content/admin/advanced-security/overview-of-github-advanced-security-deployment.md
index aac41a4d62..8091ac9c66 100644
--- a/translations/es-ES/content/admin/advanced-security/overview-of-github-advanced-security-deployment.md
+++ b/translations/es-ES/content/admin/advanced-security/overview-of-github-advanced-security-deployment.md
@@ -1,7 +1,7 @@
---
-title: Overview of GitHub Advanced Security deployment
-intro: 'Help your company successfully prepare to adopt {% data variables.product.prodname_GH_advanced_security %} (GHAS) by reviewing and understanding these best practices, rollout examples, and our enterprise-tested phased approach.'
-product: '{% data variables.product.prodname_GH_advanced_security %} is a set of security features designed to make enterprise code more secure. It is available for {% data variables.product.prodname_ghe_server %} 3.0 or higher, {% data variables.product.prodname_ghe_cloud %}, and open source repositories. To learn more about the features, included in {% data variables.product.prodname_GH_advanced_security %}, see "[About GitHub Advanced Security](/get-started/learning-about-github/about-github-advanced-security)."'
+title: Resumen del despliegue de la Seguridad Avanzada de GitHub
+intro: 'Ayuda a tu compañía para que se prepare con éxito para adoptar la {% data variables.product.prodname_GH_advanced_security %} (GHAS) revisando y entendiendo estas mejores prácticas, ejemplos de implementación y nuestro acercamiento gradual probado en empresas.'
+product: '{% data variables.product.prodname_GH_advanced_security %} es un conjunto de características diseñado para hacer el código empresarial más seguro. Está disponible para {% data variables.product.prodname_ghe_server %} 3.0 o superior, {% data variables.product.prodname_ghe_cloud %} y para los repositorios de código abierto. Para aprender más sobre estas características que se incluyen en {% data variables.product.prodname_GH_advanced_security %}, consulta la sección "[Acerca de la Seguridad Avanzada de GitHub](/get-started/learning-about-github/about-github-advanced-security)".'
miniTocMaxHeadingLevel: 3
versions:
ghes: '*'
@@ -14,191 +14,191 @@ topics:
- Security
---
-{% data variables.product.prodname_GH_advanced_security %} (GHAS) helps teams build more secure code faster using integrated tooling such as CodeQL, the world’s most advanced semantic code analysis engine. GHAS is a suite of tools that requires active participation from developers across your enterprise. To realize the best return on your investment, you must learn how to use, apply, and maintain GHAS to truly protect your code.
+La {% data variables.product.prodname_GH_advanced_security %} (GHAS) ayuda a los equipos a crear código más seguro de forma más rápida utilizando las herramientas integradas, tales como CodeQL, el motor de análisis de código semántico más avanzado del mundo. La GHAS es una suite de herramientas que requiere una participación activa de los desarrolladores en toda tu empresa. Para realizar el mejor retorno de inversión para tu empresa, debes aprender cómo utilizar, aplicar y mantener la GHAS para proteger tu código verdaderamente.
-One of the biggest challenges in tackling new software for an company can be the rollout and implementation process, as well as bringing about the cultural change to drive the organizational buy-in needed to make the rollout successful.
+Uno de los retos más grandes en abordar el software nuevo para una compañía puede ser el proceso de implementación y despliegue, así como traer el cambio cultural para impulsar la participación organizacional necesaria para que dicha implementación tenga éxito.
-To help your company better understand and prepare for this process with GHAS, this overview is aimed at:
- - Giving you an overview of what a GHAS rollout might look like for your company.
- - Helping you prepare your company for a rollout.
- - Sharing key best practices to help increase your company’s rollout success.
+Para ayudar a que tu compañía entienda y se prepare mejor para este proceso con la GHAS, este resumen se enfoca en:
+ - Darte un resumen de cómo podría verse una implementación de GHAS en tu compañía.
+ - Ayudarte a preparar tu compañía para esta implementación.
+ - Compartir las mejores prácticas para ayudarte a incrementar el éxito en la implementación de tu compañía.
-To understand the security features available through {% data variables.product.prodname_GH_advanced_security %}, see "[{% data variables.product.prodname_dotcom %} security features](/code-security/getting-started/github-security-features)."
+Para entender las características de seguridad que están disponibles con la {% data variables.product.prodname_GH_advanced_security %}, consulta la sección "[Características de seguridad de {% data variables.product.prodname_dotcom %}](/code-security/getting-started/github-security-features)".
-## Recommended phased approach for GHAS rollouts
+## Método gradual recomendado para las implementaciones de la GHAS
-We’ve created a phased approach to GHAS rollouts developed from industry and GitHub best practices. You can utilize this approach for your rollout, either in partnership with {% data variables.product.prodname_professional_services %} or independently.
+Creamos un enfoque gradual para las implementaciones de la GHAS que se desarrolla con las mejores prácticas de la industria y de GitHub. Puedes utilizar este enfoque para tu implementación, ya sea en asociación con {% data variables.product.prodname_professional_services %} o independientemente.
-While the phased approach is recommended, adjustments can be made based on the needs of your company. We also suggest creating and adhering to a timeline for your rollout and implementation. As you begin your planning, we can work together to identify the ideal approach and timeline that works best for your company.
+Si bien se recomienda el enfoque gradual, los ajustes pueden realizarse con base en las necesidades de tu compañía. También te sugerimos crear y apegarte a una línea de tiempo para tu implementación y despliegue. Conforme comienzas tu planeación, podemos trabajar en conjunto para identificar el enfoque y línea de tiempo ideales que funcionen mejor para tu compañía.
-
+
-Based on our experience helping customers with a successful deployment of {% data variables.product.prodname_GH_advanced_security %}, we expect most customers will want to follow these phases. Depending on the needs of your company, you may need to modify this approach and alter or remove some phases or steps.
+Con base en nuestra experiencia ayudando a los clientes a tener un despliegue exitoso de la {% data variables.product.prodname_GH_advanced_security %}, esperamos que la mayoría de ellos estén dispuestos a seguir estas fases. Dependiendo de las necesidades de tu compañía, podrías necesitar modificar este enfoque y modificar o eliminar algunas fases o pasos.
-Para encontrar una guía detallada de cómo implementar cada una de estas fases, consulta la secicón "[Desplegar la {% data variables.product.prodname_GH_advanced_security %} en tu empresa](/admin/advanced-security/deploying-github-advanced-security-in-your-enterprise)". The next section gives you a high-level summary of each of these phases.
+Para encontrar una guía detallada de cómo implementar cada una de estas fases, consulta la secicón "[Desplegar la {% data variables.product.prodname_GH_advanced_security %} en tu empresa](/admin/advanced-security/deploying-github-advanced-security-in-your-enterprise)". La siguiente sección te proporciona un resumen de alto nivel de cada una de estas fases.
-### {% octicon "milestone" aria-label="The milestone icon" %} Phase 0: Planning & kickoff
+### {% octicon "milestone" aria-label="The milestone icon" %} Fase 0: Planeación & inicio
-During this phase, the overall goal is to plan and prepare for your rollout, ensuring that you have your people, processes, and technologies in place and ready for your rollout. You should also consider what success criteria will be used to measure GHAS adoption and usage across your teams.
+Durante esta fase, la meta general es planear y prepararte para la implementación, garantizando que tienes lista a la gente, procesos y tecnologías y que estás listo para llevarla a cabo. También debes considerar qué criterios de éxito se utilizarán para medir la adopción de la GHAS y su uso por parte de todos tus equipos.
-### {% octicon "milestone" aria-label="The milestone icon" %} Phase 1: Pilot project(s)
+### {% octicon "milestone" aria-label="The milestone icon" %} Fase1: Proyecto(s) piloto
-To begin implementing GHAS, we recommend beginning with a few high-impact projects/teams with which to pilot an initial rollout. This will allow an initial group within your company to get familiar with GHAS, learn how to enable and configure GHAS, and build a solid foundation on GHAS before rolling out to the remainder of your company.
+Para comenzar a implementar la GHAS, te recomendamos comenzar con unos cuantos equipos/proyectos de alto impacto con los cuales puedas hacer un piloto de la implementación inicial. Esto permitirá que un grupo inicial dentro de tu compañía se familiarice con la GHAS, aprenda cómo habilitarla y configurarla y cree bases sólidas en ella antes de implementarla con el resto de tu compañía.
-### {% octicon "milestone" aria-label="The milestone icon" %} Phase 2: Organizational buy-in & rollout preparation
+### {% octicon "milestone" aria-label="The milestone icon" %} Fase 2: Participación organizacional & preparación para la implementación
-Phase 2 is a recap of previous phases and preparing for a larger rollout across the remainder of the company. In this phase, organizational buy-in can refer to your company’s decision to move forward after the pilot project(s) or the company’s use and adoption of GHAS over time (this is most common). If your company decides to adopt GHAS over time, then phase 2 can continue into phase 3 and beyond.
+La Fase 2 es una recapitulación de las fases previas y una preparación para una implementación mayor a lo largo del resto de la compañía. En esta fase, la participación organizacional puede referirse a la decisión de tu compañía para avanzar después del (los) proyecto(s) piloto o del uso y adopción de la GHAS en la compañía con el tiempo (esto es lo más común). Si tu compañía decide adoptar la GHAS con el tiempo, entonces la fase 2 puede seguir con la fase 3 y posterior.
-### {% octicon "milestone" aria-label="The milestone icon" %} Phase 3: Full organizational rollout & change management
+### {% octicon "milestone" aria-label="The milestone icon" %} Fase 3: Implementación organizacional integral & administración de cambios
-Once your company is in alignment, you can begin rolling GHAS out to the remainder of the company based on your rollout plan. Durante esta fase, es crucial asegurarse de que se haya hecho un plan para abordar cualquier cambio organizacional que necesite hacerse durante tu implementación de GHAS y garantizar que los equipos entiendan la necesidad, valor e impacto de dicho cambio en los flujos de trabajo actuales.
+Una vez que tu compañía se alinee, puedes comenzar a implementar la GHAS en el resto de ella con base en tu plan de implementación. Durante esta fase, es crucial asegurarse de que se haya hecho un plan para abordar cualquier cambio organizacional que necesite hacerse durante tu implementación de GHAS y garantizar que los equipos entiendan la necesidad, valor e impacto de dicho cambio en los flujos de trabajo actuales.
-## Best practices for a successful GHAS rollout
+## Mejores prácticas para una implementación exitosa de la GHAS
-We’ve found that companies that have completed successful GHAS rollouts have several similar characteristics that help drive their success. To help your company increase the success of your GHAS rollout, review these best practices.
+Hemos visto que las compañías que completan implementaciones exitosas de la GHAS tienen varias características similares que les permiten impulsar su éxito. Para ayudar a tu compañía a incrementar el éxito de la implementación de la GHAS, revisa estas mejores prácticas.
-### {% octicon "checklist" aria-label="The checklist icon" %} Set clear goals for your company’s rollout
+### {% octicon "checklist" aria-label="The checklist icon" %} Establece metas claras para la implementación en tu compañía
-Setting goals may seem obvious, but we do see some companies that begin GHAS rollouts with no clear goals in mind. It’s more difficult for these companies to gain the true organizational buy-in that’s needed to complete the rollout process and realize the value of GHAS within their company.
+El establecer metas podría verse como algo obvio, pero hemos visto que algunas compañías que comienzan su implementación de la GHAS no las tienen en mente. Es más difícil que estas compañías obtengan una verdadera participación organizacional, la cual se requiere para completar el proceso de implementación y comprender el valor de la GHAS en ellas.
-As you begin planning for your rollout and implementation, begin outlining goals for GHAS within your company and ensure these are communicated to your team. Your goals can be highly detailed or something simple, as long as there is a starting point and alignment. This will help build a foundation for the direction of your company’s rollout and can help you build a plan to get there. If you need assistance with your goals, {% data variables.product.prodname_professional_services %} can help with recommendations based on our experience with your company and prior engagements with other customers.
+Conforme comienzas a planear tu implementación y despliegue, comienza a definir las metas para la GHAS dentro de tu compañía y asegúrate de que estas se le comuniquen a tu equipo. Tus metas pueden tener mucho detalle o ser simples, en tanto exista un punto inicial y un alineamiento. Esto ayudará a crear bases para la dirección de la implementación de tu compañía y para crear un plan para conseguirlo. Si necesitas ayuda para establecer tus metas, {% data variables.product.prodname_professional_services %} puede ayudarte dándote recomendaciones con base en nuestra experiencia con tu compañía y con las interacciones que hemos tenido con otros clientes.
-Here are some high-level examples of what your goals for rolling out GHAS might look like:
- - **Reducing the number of vulnerabilities:** This may be in general, or because your company was recently impacted by a significant vulnerability that you believe could have been prevented by a tool like GHAS.
- - **Identifying high-risk repositories:** Some companies may simply want to target repositories that contain the most risk, ready to begin remediating vulnerabilities and reducing risk.
- - **Increasing remediation rates:** This can be accomplished by driving developer adoption of findings and ensuring these vulnerabilities are remediated in a timely manner, preventing the accumulation of security debt.
- - **Meeting compliance requirements:** This can be as simple as creating new compliance requirements or something more specific. We find many healthcare companies use GHAS to prevent the exposure of PHI (Personal Health Information).
- - **Preventing secrets leakage:** This is often a goal of companies that have had (or want to prevent) critical information leaked such as software keys, customer or financial data, etc.
- - **Dependency management:** This is often a goal for companies that may have fallen victim due to hacks from unpatched dependencies, or those seeking to prevent these types of attacks by updating vulnerable dependencies.
+Aquí tienes algunos ejemplos de alto nivel de cómo podrían verse tus metas para implementar la GHAS:
+ - **Reducir la cantidad de vulnerabilidades:** Esto puede ser en general o porque tu compañía se vio recientemente impactada por alguna vulnerabilidad significativa, la cual piensas que pudo haberse prevenido con una herramienta tal como la GHAS.
+ - **Identificar repositorios de riesgo algo:** Algunas compañías simplemente querrán dirigirse a repositorios que contengan el mayor riesgo, listas para comenzar a remediar las vulnerabilidades y reducir los riesgos.
+ - **Incrementar las tasas de remediación:** Esto puede lograrse impulsando a los desarrolladores a que adopten los hallazgos y garantizando que estas vulnerabilidades se remedien de forma oportuna, previniendo la acumulación de la deuda de seguridad.
+ - **Lograr los requisitos de cumplimiento:** Esto puede ser tan simple como crear requisitos de cumplimiento nuevos o algo más específico. Hemos visto que muchas compañías del sector salud utilizan la GHAS para prevenir la divulgación de la PHI (Información Personal sobre la Salud, por sus siglas en inglés).
+ - **Prevenir la fuga de secretos:** Esta es, a menudo, la meta de las compañías que han tenido (o quieren prevenir) la fuga de información tal como las claves de software, datos financieros o de cliente, etc.
+ - **Administración de dependencias:** Esta es, a menudo, la meta para las compañías que han sido víctimas de hackeos a partir de dependencias no parchadas o de aquellas que quieren prevenir este tipo de ataques mediante la actualización de sus dependencias vulnerables.
-### {% octicon "checklist" aria-label="The checklist icon" %} Establish clear communication and alignment between your teams
+### {% octicon "checklist" aria-label="The checklist icon" %} Establecer un alineamiento y comunicación clara entre tus equipos
-Clear communication and alignment are critical to the success of any project, and the rollout of GHAS is no different. We’ve found that companies that have clear communication and alignment between their security and development groups, as well as their executive sponsor (either CISO or VP) from the purchase of GHAS through rollout, often have more success with their rollouts.
+La comunicación clara y el alineamiento son críticos para el éxito de cualquier proyecto y la implementación de la GHAS no es la exepción. Hemos visto que las compañías que tienen comunicaciones claras y que se alinean entre sus grupos de desarrollo y seguridad, así como con su patrocinador ejecutivo (ya sea el CISO o VP) desde la compra de GHAS hasta su implementación suelen tener más éxito en dichas implementaciones.
-In addition to ensuring these groups are aligned throughout your GHAS rollout, there are a few specific areas we recommend focusing on.
+Adicionalmente a garantizar que estos grupos se encuentran alineados a lo largo de tu implementación de la GHAS, hay algunas áreas específicas en las que recomendamos te enfoques.
-#### Rollout planning
+#### Planeación de la implementación
-How will you roll out GHAS to your company? There will likely be many ideas and opinions. Here are some questions you should consider answering and aligning on before moving forward:
- - What teams will be included in the pilot?
- - What projects are focused on in the pilot?
- - How should projects be prioritized for rollout?
- - How do you plan to measure success in the pilot and beyond?
- - What is the level of daily change your teams will be taking on? How will that be communicated?
- - How will your rollout plans be communicated across the company?
- - How do you plan to train your teams?
- - How do you plan to manage scan results initially? (For more information, see the next section on "Processing results")
+¿Cómo implementarás la GHAS en tu compañía? Lo más seguro es que se presenten muchas ideas y opiniones. Aquí tienes algunas preguntas que deberías considerar responder y con las cuales deberías alinearte antes de seguir:
+ - ¿Qué equipos se incluirán en el piloto?
+ - ¿Qué proyectos están enfocados en el piloto?
+ - ¿Cómo deberían priorizarse los proyectos para la implementación?
+ - ¿Cómo planeas medir el éxito del piloto y después de este?
+ - ¿Cuál es el nivel de cambio diario que experimentarán tus equipos? ¿Cómo se comunicará esto?
+ - ¿Cómo se comunicarán tus planes de implementación en toda la compañía?
+ - ¿Cómo planeas capacitar a tus equipos?
+ - ¿Cómo planeas administrar los resultados de escaneo inicialmente? (Para obtener más información, consulta la siguiente sección enfocada en el "Procesamiento de resultados")
-#### Processing results
+#### Procesar los resultados
-Before GHAS is rolled out to your teams, there should be clear alignment on how results should be managed over time. We recommend initially looking at results as more informative and non-blocking. It’s likely your company has a full CI/CD pipeline, so we recommend this approach to avoid blocking your company’s process. As you get used to processing these results, then you can incrementally increase the level of restriction to a point that feels more accurate for your company.
+Antes de implementar la GHAS en tus equipos, debería de haber un alineamiento claro en cómo se deben administrar los resultados con el paso del tiempo. Te recomendamos ver los resultados inicialmente, conforme sean más informativos, y sin bloquear. Es probable que tu compañía tenga un mapa completo de IC/DC, así que recomendamos este enfoque para evitar bloquear sus procesos. Conforme te acostumbres a procesar estos resultados, podrás incrementar gradualmente el nivel de restricción hasta un punto en el que se sienta más adecuado para tu compañía.
-### {% octicon "checklist" aria-label="The checklist icon" %} Lead your rollout with both your security and development groups
+### {% octicon "checklist" aria-label="The checklist icon" %} Dirigir tu implementación tanto con tu equipo de seguridad como con los grupos de desarrllo
-Many companies lead their GHAS rollout efforts with their security group. Often, development teams aren’t included in the rollout process until the pilot has concluded. However, we’ve found that companies that lead their rollouts with both their security and development teams tend to have more success with their GHAS rollout.
+Muchas compañías dirigen su implementación de la GHAS con su grupo de seguridad. A menudo, no se incluye a los equipos de desarrollo en el proceso de implementación sino hasta que concluye el piloto. Sin embargo, nos hemos dado cuenta de que las compañías que dirigen sus implementaciones tanto con su equipo de seguridad como con el de desarrollo suelen tener más éxito con la implementación de su GHAS.
-¿Por què? GHAS takes a developer-centered approach to software security by integrating seamlessly into the developer workflow. Not having key representation from your development group early in the process increases the risk of your rollout and creates an uphill path towards organizational buy-in.
+¿Por què? La GHAS lleva un enfoque centrado en los desarrolladores para abordar la seguridad del software, integrándose fácilmente en el flujo de trabajo de estos. El no tener una representación clave de tu grupo de desarrollo en las fases tempranas del proceso incrementará el riesgo de la implementación y creará una pendiente para la participación organizacional.
-When development groups are involved earlier (ideally from purchase), security and development groups can achieve alignment early in the process. This helps to remove silos between the two groups, builds and strengthens their working relationships, and helps shift the groups away from a common mentality of “throwing things over the wall.” All of these things help support the overall goal to help companies shift and begin utilizing GHAS to address security concerns earlier in the development process.
+Cuando se involucra tempranamente a los grupos de desarrollo (idealmente, desde la compra), tanto estos como los de seguridad pueden lograr un alineamiento temprano en el proceso. Esto ayuda a eliminar brechas entre ambos grupos, crea fortaleza en sus relaciones laborales y ayuda a evitar la mentalidad común de "aventar las cosas a la pared". Todo esto ayuda a apoyar la meta general de ayudar a las compañías a cambiar y comenzar a utilizar la GHAS para abordar las preocupaciones de seguridad de forma más temprana en el proceso de desarrollo.
-#### {% octicon "people" aria-label="The people icon" %} Recommended key roles for your rollout team
+#### {% octicon "people" aria-label="The people icon" %} Roles clave recomendados para tu equipo de desarrollo
-We recommend a few key roles to have on your team to ensure that your groups are well represented throughout the planning and execution of your rollout and implementation.
+Te recomendamos algunos roles clave para que los tengas en tu equipo y así te asegures de que tus grupos están bien representados a lo largo de la planeación y ejecución de tu implementación y despliegue.
-We highly recommend your rollout team include these roles:
-- **Executive Sponsor:** This is often the CISO, CIO, VP of Security, or VP of Engineering.
-- **Technical Security Lead:** The technical security lead provides technical support on behalf of the security team throughout the implementation process.
-- **Technical Development Lead:** The technical development lead provides technical support and will likely lead the implementation effort with the development team.
+Te recomendamos ampliamente que tu equipo de implementación incluya estos roles:
+- **Patrocinador ejecutivo:** A menudo es el CISO, CIO, VP de Seguridad o VP de Ingeniería.
+- **Líder de Seguridad Técnica:** El líder de seguridad técnica proporciona soporte técnico en nombre del equipo de seguridad durante todo el proceso de implementación.
+- **Directores de desdarrollo técnico:** Los directores de desarrollo técnico proporcionan soporte técnico y probablemente liderarán los esfuerzos de implementación con el equipo de desarrollo.
-We also recommend your rollout team include these roles:
-- **Project Manager:** We’ve found that the earlier a project manager can be introduced into the rollout process the higher the likelihood of success.
-- **Quality Assurance Engineer:** Including a member of your company’s Quality Assurance team helps ensure process changes are taken into account for the QA team.
+También te recomendamos que tu equipo de implementación incluya estos roles:
+- **Administrador de proyecto:** Hemos notado que entre más rápido se incluya a un administrador de proyecto en el proceso de implementación, mayor es la probabilidad del éxito.
+- **Ingeniero de control de calidad:** El incluir a un miembro del equipo de control de calidad de tu compañía ayuda a garantizar que el equipo de QA tome en cuenta los cambios de proceso.
-### {% octicon "checklist" aria-label="The checklist icon" %} Understand key GHAS facts to prevent common misconceptions
+### {% octicon "checklist" aria-label="The checklist icon" %} Entender hechos clave de la GHAS para prevenir malentendidos comunes
-Going into a GHAS implementation, it’s important to understand some key basic facts about what GHAS is and can do, to prevent many common misconceptions companies have going into their GHAS rollouts.
+Cuando se inicia una implementación de la GHAS, es importante entender algunos hechos clave básicos sobre qué es la GHAS y qué puede hacer y así prevenir muchos malentendidos comunes que tienen las compañías al iniciar sus implementaciones de la GHAS.
{% note %}
-**Nota:** Si te interesa recibir lecciones subsecuentes sobre tu GHAS, {% data variables.product.prodname_professional_services %} cuenta con diversas opciones de educación y capacitación adicional, incluyendo los temas que tu compañía necesite preparar para GHAS. These offerings may take the form of workshops, demonstrations, and bootcamps. Topics can range from deploying GHAS and basic usage of GHAS to more advanced topics to continue to build your team’s skills. For more information on working with the {% data variables.product.prodname_professional_services_team %} team, see "[{% data variables.product.prodname_professional_services %}](#github-professional-services)."
+**Nota:** Si te interesa recibir lecciones subsecuentes sobre tu GHAS, {% data variables.product.prodname_professional_services %} cuenta con diversas opciones de educación y capacitación adicional, incluyendo los temas que tu compañía necesite preparar para GHAS. Estas ofertas podrían mostrarse como talleres, demostraciones y capacitaciones intensivas. Los temas pueden ir desde desplegar la GHAS y mostrar su uso básico hasta algunos más avanzados para seguir desarrollando las habilidades de tu equipo. Para obtener más información sobre cómo trabajar con el equipo de {% data variables.product.prodname_professional_services_team %}, consulta la sección "[{% data variables.product.prodname_professional_services %}](#github-professional-services)".
{% endnote %}
-#### Fact 1: GHAS is a suite of security tools that require action to protect your code.
+#### Hecho 1: La GHAS es una suite de herramientas de seguridad que requiere de una participación activa para proteger tu código.
-It’s not security software that is installed and forgotten—just having GHAS on its own does not protect your code. GHAS is a suite of tools that increases with value when configured, maintained, used in daily workflows, and in combination with other tools.
+No es software de seguridad que se pueda instalar y olvidar; el solo hecho de tener la GHAS no protege tu código. La GHAS es una suite de herramientas que incrementa su valor cuando la configuras, mantienes, utilizas en flujos de trabajo diariamente y la combinas con otras herramientas.
-#### Fact 2: GHAS will require adjustment out of the box.
+#### Hecho 2: La GHAS necesitará ajustes tan pronto la implmementes.
-Once GHAS is set up on your repositories, there are additional steps that need to be taken to ensure it works for your company’s needs. Code scanning in particular requires further configuration to fine-tune your results, for example, customizing what is flagged by the scans to adjust what is picked up in future scans. Many customers find that initial scans either pick up no results or results that are not relevant based on the application's threat model and need to be adjusted to their company’s needs.
+Una vez que configures la GHAS en tus repositorios, habrán pasos adicionales necesarios para garantizar que funcione de acuerdo con las necesidades de tu compañía. El escaneo de código en particular necesita configurarse aún más para hacer los ajustes más específicos en tus resultados, por ejemplo, personalizar lo que marcan los escaneos para ajustar qué se escogerá en los escaneos futuros. Muchos clientes se encuentran con que los escaneos iniciales ya sea no recogen resultados, o bien, que estos resultados no son relevantes con base en el modelo de amenazas de aplicación y necesitan ajustarse de acuerdo con las necesidades de sus compañías.
-#### Fact 3: GHAS tools are most effective when used together, but the most effective AppSec programs involve the use of additional tools/activities.
+#### Hecho 3: Las herramientas de la GHAS tienen su mayor efectividad cuando se utilizan en conjunto, pero los programas más efectivos de AppSec involucran el uso de actividades/herramientas adicionales.
-GHAS is most effective when all of the tools are used together. When companies integrate GHAS with other tools and activities, such as penetration testing and dynamic scans, it further improves the effectiveness of the AppSec program. We recommend always utilizing multiple layers of protection.
+La GHAS tiene su mayor efectividad cuando se utilizan todas las herramientas en conjunto. Cuando las compañías integran la GHAS con otras herramientas y actividades, tales como pruebas de penetración y escaneos dinámicos, esta mejora aún más la efectividad del programa de AppSec. Te recomendamos que siempre utilices capas de protección múltiples.
-#### Fact 4: Not all companies will use/need custom {% data variables.product.prodname_codeql %} queries, but they can help you customize/target scan results.
+#### Hecho 4: No todas las compañías utilizarán/necesitarán consultas de {% data variables.product.prodname_codeql %} personalizadas, pero pueden ayudarte a personalizar/apuntar los resultados del escaneo.
-Code scanning is powered by {% data variables.product.prodname_codeql %}—the world’s most powerful code analysis engine. While many companies are excited at the prospect of being able to write custom queries, for a large portion of our customers the base query set and additional queries available in the community are typically more than sufficient. However, many companies may find the need for custom {% data variables.product.prodname_codeql %} queries to help reduce false positives rates in results or crafting new queries to target results your company may need.
+{% data variables.product.prodname_codeql %}, el motor de análisis de código más poderoso del mundo, impulsa el escaneo de código. Si bien muchas compañías están emocionadas con la posibilidad de poder escribir consultas personalizadas, para la mayoría de ellas, el conjunto básico de consultas y las adicionales disponibles en la comunidad, son habitualmente más que suficiente. Sin embargo, muchas compañías podrían encontrar la necesidad de tener consultas personalizadas de {% data variables.product.prodname_codeql %} para ayudarles a reducir las tasas de falsos positivos en los resultados o para crear consultas nuevas para tratar los resultados que pudiera necesitar tu compañía.
-However, if your company is interested in writing custom {% data variables.product.prodname_codeql %} queries, we recommend you complete your rollout and implementation of GHAS before exploring custom queries.
+Sin embargo, si tu compañía está interesada en escribir consultas personalizadas de {% data variables.product.prodname_codeql %}, te recomendamos completar tu implementación y despliegue de la GHAS antes de explorar esta opción.
{% note %}
-**Note:** It’s crucial for your company to have a solid foundation on GHAS before diving deeper into deeper security practices.
+**Nota:** Es crucial para tu compañía el tener bases sólidas en la GHAS antes de profundizar más en las prácticas de seguridad.
{% endnote %}
-When your company is ready, our Customer Success team can help you navigate the requirements that need to be met and can help ensure your company has good use cases for custom queries.
+Cuando tu compañía esté lista, nuestro equipo de Éxito del Cliente te ayudará a navegar a través de los requisitos que necesitan cumplirse y que pueden ayudarte a garantizar que tu compañía tenga un buen uso de casos para las consultas personalizadas.
-#### Fact 5: {% data variables.product.prodname_codeql %} scans the whole code base, not just the changes made in a pull request.
+#### Hecho 5: El {% data variables.product.prodname_codeql %} escaneo toda la base de código, no únicamente los cambios que se hacen en una solicitud de cambios.
-When code scanning is run from a pull request, the scan will include the full codebase and not just the changes made in the pull request. While this may seem unnecessary at times, this is an important step to ensure the change has been reviewed all against all interactions in the codebase.
+Cuando el escaneo de código se ejecuta desde una solicitud de cambios, este incluirá a toda la base de código y no solo a los cambios que se realizan en la solicitud de cambios. Si bien esto podría verse como innecesario en algunas ocasiones, es un paso importante para garantizar que los cambios se revisaron contra todas las interacciones en la base de código.
-## Examples of successful {% data variables.product.prodname_GH_advanced_security %} rollouts
+## Ejemplos de implementaciones exitosas de la {% data variables.product.prodname_GH_advanced_security %}
-Now that you have a better understanding of some of the keys to a successful GHAS rollout and implementation, here are some examples of how our customers made their rollouts successful. Even if your company is in a different place, {% data variables.product.prodname_dotcom %} can help you with building a customized path that suits the needs of your rollout.
+Ahora que tienes un mejor entendimiento de cuáles son algunas de las claves para tener una implementación y despliegue exitosas de la GHAS, aquí tienes algunos ejemplos de cómo nuestros clientes realizaron su implementación exitosamente. Incluso si tu compañía se encuentra en un lugar diferente, {% data variables.product.prodname_dotcom %} puede ayudarte a crear una ruta personalizada que satisfaga las necesidades de tu implementación.
-### Example rollout for a mid-sized healthcare technology company
+### Implementación de ejemplo para una compañía de tecnología en el sector salud de tamaño medio
-A mid-sized healthcare technology company based out of San Francisco completed a successful GHAS rollout process. Si bien podrían no haber tenido una cantidad grande de repositorios que necesitan habilitarse, estas claves del éxito de la compañía incluyen tener un equipo alineado y bien organizado para la implementación, con un contacto clave bien establecido para trabajar con {% data variables.product.prodname_dotcom %} y para solucionar cualquier problema durante el proceso. This allowed them to complete their rollout within two months.
+Una compañía de tecnología en el sector salud de tamaño medio basada en San Francisco completó su proceso de implementación de la GHAS exitosamente. Si bien podrían no haber tenido una cantidad grande de repositorios que necesitan habilitarse, estas claves del éxito de la compañía incluyen tener un equipo alineado y bien organizado para la implementación, con un contacto clave bien establecido para trabajar con {% data variables.product.prodname_dotcom %} y para solucionar cualquier problema durante el proceso. Esto le permitió completar su implementación en dos meses.
-In addition, having an engaged development team allowed the company to have teams using code scanning at the pull request level following the completion of their rollout.
+Adicionalmente, el haber incluido a su equipo de desarrollo le permitió tener equipos que utilizaron el escaneo de código a nivel de las solicitudes de cambio después de haber completado su implementación.
-### Example rollout for a mid-sized data platform company
+### Implementación de ejemplo para una compañía mediana de plataforma de datos
-A global data platform company has had great success with GHAS to date. They’ve completed their initial implementation and are currently progressing through the rollout process. This company is mature in their security posture and tooling, and are well-aligned as an company. This allows them to operate very self-sufficiently and has enabled them to move quickly and smoothly through their rollout.
+Una compañía global de plataforma de datos tuvo un gran éxito con la GHAS hasta el momento. Completaron su implementación inicial y actualmente están progresando a través del resto de este proceso. Esta compañía tiene una buena madurez en su postura y herramientas de seguridad y está bien alineada como compañía. Esto les permite operar de forma muy autosuficiente y les permitió moverse rápida y eficazmente a lo largo de la implementación.
-This company's strong alignment, efficient operations, and security tooling maturity allowed them to implement GHAS quickly and build a good foundation for {% data variables.product.prodname_codeql %}. Since their implementation, they can now automatically enable {% data variables.product.prodname_codeql %} across different repositories.
+El alineamiento fuerte, operaciones eficientes y madurez de las herramientas de seguridad de esta compañía les permitió implementar la GHAS rápidamente y construir bases fuertes para el {% data variables.product.prodname_codeql %}. Desde su implementación, ahora pueden habilitar el {% data variables.product.prodname_codeql %} automáticamente a lo largo de los diversos repositorios.
-In addition to their security and technical maturity, another critical key to this company’s success is having a project owner and single point of contact from their team to drive the project forward. Not only is having this key contact crucial, but they are incredibly resourceful and skilled, and directly contribute to the success of the rollout.
+Adicionalmente a su madurez técnica y de seguridad, otra clave crítica en el éxito de esta compañía es tener un propietario del proyecto y un punto de contacto único en su equipo para impulsarlo. No solo fue crucial contar con este contacto clave, sino que presentaron habilidades e ingenio increíbles que contribuyeron directamente con el éxito de la implementación.
-## Prerequisites for your company before rolling out GHAS
+## Prerrequisitos para tu compañía antes de implementar la GHAS
-{% data variables.product.prodname_professional_services %} can help to provide additional support to help your company break down and understand these prerequisites and help you get prepared for the GHAS implementation process.
+Los {% data variables.product.prodname_professional_services %} pueden ayudarte a proporcionar apoyo adicional para ayudar a que tu compañía sintetice y entienda estos prerrequisitos y te ayudará a prepararte para el proceso de implementación de la GHAS.
### CI/CD systems and process
-If your company has not yet invested in or implemented continuous integration or continuous delivery (CI/CD) systems and processes, we recommend taking this step in conjunction with moving forward with GHAS. This may be a significant shift for your company—we can work with you to provide recommendations and guidance for implementing a CI/CD system, as well as supporting any training that might be needed.
+Si tu compañía aún no ha invertido o implementado en sistemas y procesos de integración y despliegue contínuos (IC/DC), te recomendamos tomar este paso en conjunto con la implementación de la GHAS. Esto podría representar un cambio importante para tu compañía: podemos trabajar contigo para proporcionar recomendaciones y orientación para implementar un sistema de IC/DC, así como proporcionar apoyo con cualquier capacitación que pudiera necesitarse.
-### Requirements to install {% data variables.product.prodname_GH_advanced_security %}
+### Requisitos para instalar la {% data variables.product.prodname_GH_advanced_security %}
-There are a few different paths that can be taken for your GHAS installation based on what combinations of technologies your company uses. This section outlines a quick breakdown of the different paths your company may need to take.
+Hay algunas rutas diferentes que pueden tomarse para tu instalación de la GHAS con base en las combinaciones de tecnologías que utilice tu compañía. Esta sección describe un desglose rápido de las diversas rutas que tu compañía podría necesitar tomar.
{% ifversion ghes %}
#### {% data variables.product.prodname_ghe_server %}
-It’s important that you’re utilizing a version of {% data variables.product.prodname_ghe_server %} (GHES) that will support your company’s needs.
+Es importante que estés utilizando una versión de {% data variables.product.prodname_ghe_server %} (GHES) que sea compatible con las necesidades de tu compañía.
-If you’re using an earlier version of GHES (prior to 3.0) and would like to upgrade, there are some requirements that you’ll need to meet before moving forward with the upgrade. Para obtener más información, consulta:
+Si estás utilizando una versión anterior de GHES (anterior a la 3.0) y te gustaría mejorarla, hay algunos requisitos que tendrás que cumplir antes de seguir con esta mejora. Para obtener más información, consulta:
- "[Mejorar el {% data variables.product.prodname_ghe_server %}](/enterprise-server@2.22/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server)"
- "[Requisitos de mejora](/enterprise-server@2.20/admin/enterprise-management/upgrade-requirements)"
-If you’re using a third-party CI/CD system and want to use {% data variables.product.prodname_code_scanning %}, make sure you have downloaded the {% data variables.product.prodname_codeql_cli %}. Para obtener más información, consulta la sección "[Acerca del escaneo de código de CodeQL en tu sistema de IC](/code-security/code-scanning/using-codeql-code-scanning-with-your-existing-ci-system/about-codeql-code-scanning-in-your-ci-system)."
+Si estás utilizando un sistema de IC/DC y quieres utilizar el {% data variables.product.prodname_code_scanning %}, asegúrate de haber descargado el {% data variables.product.prodname_codeql_cli %}. Para obtener más información, consulta la sección "[Acerca del escaneo de código de CodeQL en tu sistema de IC](/code-security/code-scanning/using-codeql-code-scanning-with-your-existing-ci-system/about-codeql-code-scanning-in-your-ci-system)."
-If you're working with {% data variables.product.prodname_professional_services %} for your GHAS rollout, please be prepared to discuss these items at length in your kickoff meeting.
+Si estás trabajando con los {% data variables.product.prodname_professional_services %} para tu implementación de la GHAS, prepárate para debatir estos elementos a detalle en tu junta de inicio.
{% endif %}
@@ -206,60 +206,60 @@ If you're working with {% data variables.product.prodname_professional_services
#### {% data variables.product.prodname_ghe_cloud %}
-If you’re a {% data variables.product.prodname_ghe_cloud %} (GHEC) customer there are prerequisites that you’ll need to meet depending on what CI/CD you plan to utilize.
+Si eres un cliente de {% data variables.product.prodname_ghe_cloud %} (GHEC), hay prerrequisitos que necesitarás cumplir dependiendo del plan de IC/DC que utilices.
-Using {% data variables.product.prodname_actions %} for your CI/CD:
-- To ensure {% data variables.product.prodname_code_scanning %} can be integrated and utilized properly, you should have a basic understanding of {% data variables.product.prodname_actions %} before proceeding with your installation.
+Utilizar las {% data variables.product.prodname_actions %} para tu IC/DC:
+- Para garantizar que el {% data variables.product.prodname_code_scanning %} puede integrarse y utilizarse de forma adecuada, debes tener un entendimiento básico de las {% data variables.product.prodname_actions %} antes de proceder con tu instalación.
-Using a third-party tool for CI/CD:
-- To integrate the {% data variables.product.prodname_codeql_cli %}, you should have a basic understanding of the CI/CD system, as well as *nix and Windows—in particular how commands are executed and how success/failure is signaled. For more information about how to integrate a third-party tool, see "[Using CodeQL code scanning with your existing CI system ](/code-security/code-scanning/using-codeql-code-scanning-with-your-existing-ci-system)."
+Utilizar una herramienta de IC/DC de terceros:
+- Para integrar el {% data variables.product.prodname_codeql_cli %}, debes tener un entendimiento básico del sistema de IC/DC, así como de *nix y Windows; particularmente, la forma en la que se ejecutan los comandos y cómo se señalan los éxitos/fallas. Para obtener más información sobre cómo integrar una herramienta de terceros, consulta la sección "[Utilizar el escaneo de código de CodeQL con tu sistema de IC existente](/code-security/code-scanning/using-codeql-code-scanning-with-your-existing-ci-system)".
{% endif %}
-## Partnering with GitHub for your rollout
+## Asociarte con GitHub para tu implementación
-As you prepare for your GHAS implementation, it’s important to consider what will be required from your company to make this project successful. Our most successful implementations of GHAS rely on shared responsibilities between both GitHub and our customers throughout the process with a clearly identified stakeholder from the customer owning the project.
+Conforme te preparas para la implementación de la GHAS, es importante considerar lo que se requerirá de tu compañía para que este proyecto tenga éxito. Nuestra implementación más exitosa de la GHAS depende de las responsabilidades compartidas entre GitHub y nuestros clientes a lo largo del proceso, con una identificación clara de los participantes del cliente al que pertenece el proyecto.
-#### Success model for customer and GitHub responsibilities
+#### Modelo de éxito para las responsabilidades de GitHub y del cliente
-**Customer responsibilities**
-- Completing infrastructure and process prerequisites
-- Managing rollout and implementation, including planning and execution
-- Internal training
-- (Optional) Contributing {% data variables.product.prodname_codeql %} queries to the GitHub Community
+**Responsabilidades del cliente**
+- Completar los prerrequisitos de infraestructura y procesos
+- Administrar la implementación y despliegue, incluyendo la planeación y ejecución
+- Capacitación interna
+- (Opcional) Colaborar con consultas de {% data variables.product.prodname_codeql %} en la comunidad de GitHub
-**GitHub responsibilities**
+**Responsabilidades de GitHub**
-- Maintenance and enhancements for features, such as {% ifversion ghes %}{% data variables.product.prodname_ghe_server %}{% endif %}, {% data variables.product.prodname_actions %}, {% data variables.product.prodname_GH_advanced_security %}
-- Providing, maintaining, and delivering the following services: {% data variables.product.prodname_dotcom %} Docs, {% data variables.product.prodname_dotcom %} Community, {% data variables.product.prodname_dotcom %} Support
+- Mantenimiento y mejoras para las características, tales como {% ifversion ghes %}{% data variables.product.prodname_ghe_server %}{% endif %}, {% data variables.product.prodname_actions %}, {% data variables.product.prodname_GH_advanced_security %}
+- Proporcionar, mantener y entregar los siguientes servicios: Documentos de {% data variables.product.prodname_dotcom %}, Comunidad de {% data variables.product.prodname_dotcom %}, Soporte de {% data variables.product.prodname_dotcom %}
{% note %}
-**Note:** {% data variables.product.prodname_professional_services %} can help support many of the customer responsibilities. To learn more, see "[GitHub services and support](#github-services-and-support)."
+**Nota:** Los {% data variables.product.prodname_professional_services %} pueden ayudar a apoyar muchas de las responsabilidades del cliente. Para aprender más, consulta la sección "[Servicios y soporte de GitHub](#github-services-and-support)".
{% endnote %}
-## {% data variables.product.prodname_dotcom %} services and support
+## Soporte y servicios de {% data variables.product.prodname_dotcom %}
-### {% data variables.product.prodname_dotcom %} Support
+### Soporte de {% data variables.product.prodname_dotcom %}
-Si se te presenta algún problema durante tu implementación, puedes buscar las soluciones en nuestra documentación más específica o contactar al Soporte de {% data variables.product.prodname_dotcom %}, el cual es un equipo de ingenieros técnicos especializados que pueden apoyarte cuando tengas problemas. For more information, see "[GitHub Enterprise Support](https://enterprise.github.com/support).
+Si se te presenta algún problema durante tu implementación, puedes buscar las soluciones en nuestra documentación más específica o contactar al Soporte de {% data variables.product.prodname_dotcom %}, el cual es un equipo de ingenieros técnicos especializados que pueden apoyarte cuando tengas problemas. Para obtener más información, consulta la sección "[Soporte de GitHub Enterprise](https://enterprise.github.com/support).
-In addition, you can also try our [ {% data variables.product.prodname_gcf %}](https://github.community/).
+Adicionalmente, también puedes probar nuestro [{% data variables.product.prodname_gcf %}](https://github.community/).
-If you purchased a Premium Support plan, you can submit your ticket in the [Premium Support Portal](https://enterprise.github.com/support). If you’re unsure of which Support plan you purchased, you can reach out to your sales representative or review the plan options.
+Si compraste un plan de Soporte Premium, puedes emitir tu ticket en el [Portal de Soporte Premium](https://enterprise.github.com/support). Si no estás seguro de qué plan de soporte compraste, puedes contactar a tu representante de ventas o revisar los diferentes planes disponibles.
-For more information the Premium support plan options, see:
- - "[Premium Support](https://github.com/premium-support)" {% ifversion ghec %}
- - "[About GitHub Premium Support for {% data variables.product.prodname_ghe_cloud %}](/github/working-with-github-support/about-github-premium-support-for-github-enterprise-cloud)"{% endif %}{% ifversion ghes %}
+Para obtener más información sobre las opciones de plan de soporte Premium, consulta:
+ - "[Soporte Premium](https://github.com/premium-support)" {% ifversion ghec %}
+ - "[Acerca del Soporte Premium de GitHub para {% data variables.product.prodname_ghe_cloud %}](/github/working-with-github-support/about-github-premium-support-for-github-enterprise-cloud)"{% endif %}{% ifversion ghes %}
- "[Acerca del Soporte Premium de GitHub para {% data variables.product.prodname_ghe_server %}](/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server)"{% endif %}
### {% data variables.product.prodname_professional_services %}
-Our {% data variables.product.prodname_professional_services_team %} team can partner with you for a successful rollout and implementation of {% data variables.product.prodname_GH_advanced_security %}. We offer a variety of options for the type of guidance and support you expect to need for your implementation. We also have training and bootcamps available to help your company to optimize the value of GHAS.
+Nuestro equipo de {% data variables.product.prodname_professional_services_team %} puede asociarse contigo para que tengas una implementación y despliegue exitosos de la {% data variables.product.prodname_GH_advanced_security %}. Ofrecemos varias opciones para el tipo de orientación y apoyo que esperas necesitar para tu implementación. También tenemos capacitación habitual e intensiva disponible para ayudar a que tu compañía optimice el valor de la GHAS.
-Si te gustaría trabajar con nuestro equipo de {% data variables.product.prodname_professional_services_team %} para tu implementación, te recomendamos que comiences a pensar en tu diseño e infraestructura de sistema, así como en la cantidad de repositorios que quieres configurar con GHAS, para comenzar con estas conversiones. In addition, begin thinking about goals for what you would like to achieve with this rollout.
+Si te gustaría trabajar con nuestro equipo de {% data variables.product.prodname_professional_services_team %} para tu implementación, te recomendamos que comiences a pensar en tu diseño e infraestructura de sistema, así como en la cantidad de repositorios que quieres configurar con GHAS, para comenzar con estas conversiones. Adicionalmente, comienza a pensar en las metas que te gustaría lograr con esta implementación.
-Implementation is just one step in a successful security-driven journey where you’ll learn how to use GHAS. Once you’ve completed your implementation, there will be more to learn with the rollout throughout your infrastructure and codebases. Speak with your sales representative for more information about all the {% data variables.product.prodname_professional_services_team %} options available.
+La implementación es tan solo un paso en este camino de éxito impulsado por la seguridad, en donde aprenderás a utilizar la GHAS. Una vez que hayas completado tu implementación, habrá más que aprender con la implementación a lo largo de tu infraestructura y bases de código. Habla con tu representante de ventas para obtener más información sobre todas las opciones de {% data variables.product.prodname_professional_services_team %} disponibles.
-If you initially opted out of additional services, but find that additional support is needed as you begin your implementation, please reach out to your sales representative to discuss what services options may be needed to support your implementation.
+Si inicialmente decidiste no adoptar nuestros servicios adicionales, pero te diste cuenta de que necesitas apoyo adicional para comenzar tu implementación, contacta a tu representante de ventas para debatir las opciones de servicio que pudieras requerir para apoyar tu implementación.
diff --git a/translations/es-ES/content/admin/configuration/configuring-github-connect/about-github-connect.md b/translations/es-ES/content/admin/configuration/configuring-github-connect/about-github-connect.md
new file mode 100644
index 0000000000..b214b4525f
--- /dev/null
+++ b/translations/es-ES/content/admin/configuration/configuring-github-connect/about-github-connect.md
@@ -0,0 +1,72 @@
+---
+title: About GitHub Connect
+intro: '{% data variables.product.prodname_github_connect %} amplía a {% data variables.product.product_name %} otorgándote acceso a características y flujos de trabajo adicionales que dependen del poder de {% data variables.product.prodname_dotcom_the_website %}.'
+versions:
+ ghes: '*'
+ ghae: '*'
+type: overview
+topics:
+ - Enterprise
+ - GitHub Connect
+---
+
+## Acerca de {% data variables.product.prodname_github_connect %}
+
+{% data variables.product.prodname_github_connect %} amplía a {% data variables.product.product_name %} permitiendo a {% data variables.product.product_location %} beneficiarse del poder de {% data variables.product.prodname_dotcom_the_website %} de forma limitada. Después de que habilites {% data variables.product.prodname_github_connect %}, podrás habilitar características y flujos de trabajo adicionales que dependen de {% data variables.product.prodname_dotcom_the_website %}, tales como {% ifversion ghes or ghae-issue-4864 %}las {% data variables.product.prodname_dependabot_alerts %} para las vulnerabilidades de seguridad que se rastrean en la {% data variables.product.prodname_advisory_database %}{% else %}permitiendo a los usuarios utilizar acciones impulsadas por la comunidad de {% data variables.product.prodname_dotcom_the_website %} en sus archivos de flujo de trabajo{% endif %}.
+
+{% data variables.product.prodname_github_connect %} does not open {% data variables.product.product_location %} to the public internet. None of your enterprise's private data is exposed to {% data variables.product.prodname_dotcom_the_website %} users. Instead, {% data variables.product.prodname_github_connect %} transmits only the limited data needed for the individual features you choose to enable. Unless you enable license sync, no personal data is transmitted by {% data variables.product.prodname_github_connect %}. Para obtener más información sobre los datos que transmite {% data variables.product.prodname_github_connect %}, consulta la sección "[Transmisión de datos para {% data variables.product.prodname_github_connect %}](#data-transmission-for-github-connect)".
+
+Enabling {% data variables.product.prodname_github_connect %} will not allow {% data variables.product.prodname_dotcom_the_website %} users to make changes to {% data variables.product.product_name %}.
+
+Para habilitar {% data variables.product.prodname_github_connect %}, configuras una conexión entre {% data variables.product.product_location %} y la cuenta de organización o empresa de {% data variables.product.prodname_dotcom_the_website %} que utilice {% data variables.product.prodname_ghe_cloud %}. For more information, see "[Managing {% data variables.product.prodname_github_connect %}](/admin/configuration/configuring-github-connect/managing-github-connect)."
+
+After enabling {% data variables.product.prodname_github_connect %}, you will be able to enable features such as {% ifversion ghes %}automatic user license sync and {% endif %}{% data variables.product.prodname_dependabot_alerts %}. For more information about all of the features available, see "[{% data variables.product.prodname_github_connect %} features](#github-connect-features)."
+
+## {% data variables.product.prodname_github_connect %} features
+
+Después de que configuras la conexión entre {% data variables.product.product_location %} y {% data variables.product.prodname_ghe_cloud %}, puedes habilitar las características individuales de {% data variables.product.prodname_github_connect %} para tu empresa.
+
+| Característica | Descripción | Más información |
+| ------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |{% ifversion ghes %}
+| Automatic user license sync | Manage license usage across your {% data variables.product.prodname_enterprise %} deployments by automatically syncing user licenses from {% data variables.product.product_location %} to {% data variables.product.prodname_ghe_cloud %}. | "[Enabling automatic user license sync for your enterprise](/admin/configuration/configuring-github-connect/enabling-automatic-user-license-sync-for-your-enterprise)"{% endif %}{% ifversion ghes or ghae-issue-4864 %}
+| {% data variables.product.prodname_dependabot_alerts %} | Allow users to find and fix vulnerabilities in code dependencies. | "[Habilitar la gráfica de dependencias y las {% data variables.product.prodname_dependabot_alerts %} para tu empresa](/admin/configuration/configuring-github-connect/enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise)"{% endif %}
+| {% data variables.product.prodname_dotcom_the_website %} actions | Allow users to use actions from {% data variables.product.prodname_dotcom_the_website %} in workflow files. | "[Habilitar el acceso automático a las acciones de {% data variables.product.prodname_dotcom_the_website %} utilizando {% data variables.product.prodname_github_connect %}](/admin/github-actions/managing-access-to-actions-from-githubcom/enabling-automatic-access-to-githubcom-actions-using-github-connect)" |
+| Unified search | Allow users to include repositories on {% data variables.product.prodname_dotcom_the_website %} in their search results when searching from {% data variables.product.product_location %}. | "[Enabling {% data variables.product.prodname_unified_search %} for your enterprise](/admin/configuration/configuring-github-connect/enabling-unified-search-for-your-enterprise)" |
+| Unified contributions | Allow users to include anonymized contribution counts for their work on {% data variables.product.product_location %} in their contribution graphs on {% data variables.product.prodname_dotcom_the_website %}. | "[Enabling {% data variables.product.prodname_unified_contributions %} for your enterprise](/admin/configuration/configuring-github-connect/enabling-unified-contributions-for-your-enterprise)" |
+
+## Data transmission for {% data variables.product.prodname_github_connect %}
+
+Cuando habilitas {% data variables.product.prodname_github_connect %} o características específicas de {% data variables.product.prodname_github_connect %}, un registro en las tiendas de {% data variables.product.prodname_ghe_cloud %} almacena la siguiente información sobre la conexión.
+{% ifversion ghes %}
+- La parte pública de la clave de tu licencia {% data variables.product.prodname_ghe_server %}
+- Un hash de tu licencia {% data variables.product.prodname_ghe_server %}
+- El nombre personalizado de tu licencia {% data variables.product.prodname_ghe_server %}
+- La versión de {% data variables.product.product_location_enterprise %}{% endif %}
+- The hostname of {% data variables.product.product_location %}
+- The organization or enterprise account on {% data variables.product.prodname_ghe_cloud %} that's connected to {% data variables.product.product_location %}
+- The authentication token that's used by {% data variables.product.product_location %} to make requests to {% data variables.product.prodname_ghe_cloud %}
+- Si se habilitó la Seguridad de Capa de Transporte (TLS) y se configuró en {% data variables.product.product_location %}{% ifversion ghes %}
+- Las características de {% data variables.product.prodname_github_connect %} que se habilitan en {% data variables.product.product_location %} y la fecha y hora de su habilitación.{% endif %}
+
+{% data variables.product.prodname_github_connect %} sincroniza los datos de conexión anteriores entre {% data variables.product.product_location %}y {% data variables.product.prodname_ghe_cloud %} semanalmente, desde el día y hora aproximada en que se habilitó {% data variables.product.prodname_github_connect %}.
+
+{% note %}
+
+**Note:** No repositories, issues, or pull requests are ever transmitted by {% data variables.product.prodname_github_connect %}.
+
+{% endnote %}
+
+Additional data is transmitted if you enable individual features of {% data variables.product.prodname_github_connect %}.
+
+| Característica | Data | Which way does the data flow? | Where is the data used? |
+| ------------------------------------------------------------------ | ----------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- |{% ifversion ghes %}
+| Automatic user license sync | Each {% data variables.product.product_name %} user's user ID and email addresses | From {% data variables.product.product_name %} to {% data variables.product.prodname_ghe_cloud %} | {% data variables.product.prodname_ghe_cloud %} |{% endif %}{% ifversion ghes or ghae-issue-4864 %}
+| {% data variables.product.prodname_dependabot_alerts %} | Vulnerability alerts | From {% data variables.product.prodname_dotcom_the_website %} to {% data variables.product.product_name %} | {% data variables.product.product_name%}
+{% endif %}
+| {% data variables.product.prodname_dotcom_the_website %} actions | Name of action, action (YAML file from {% data variables.product.prodname_marketplace %}) | From {% data variables.product.prodname_dotcom_the_website %} to {% data variables.product.product_name %}
From {% data variables.product.product_name %} to {% data variables.product.prodname_dotcom_the_website %} | {% data variables.product.product_name %}
+| Unified search | Search terms, search results | De {% data variables.product.prodname_dotcom_the_website %} a {% data variables.product.product_name %}
De {% data variables.product.product_name %} a {% data variables.product.prodname_dotcom_the_website %} | {% data variables.product.product_name %}
+| Unified contributions | Contribution counts | From {% data variables.product.product_name %} to {% data variables.product.prodname_dotcom_the_website %} | {% data variables.product.prodname_dotcom_the_website %}
+
+## Leer más
+
+- "[Cuentas empresariales](/graphql/guides/managing-enterprise-accounts)" en la documentación de la API de GraphQL
diff --git a/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-automatic-user-license-sync-for-your-enterprise.md b/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-automatic-user-license-sync-for-your-enterprise.md
new file mode 100644
index 0000000000..f834e987c7
--- /dev/null
+++ b/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-automatic-user-license-sync-for-your-enterprise.md
@@ -0,0 +1,32 @@
+---
+title: Enabling automatic user license sync for your enterprise
+intro: 'Puedes administrar el uso de licencias en todos tus despliegues de {% data variables.product.prodname_enterprise %} sincronizando automáticamente las licencias de usuario de {% data variables.product.product_location %} a {% data variables.product.prodname_ghe_cloud %}.'
+redirect_from:
+ - /enterprise/admin/installation/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud
+ - /enterprise/admin/configuration/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud
+ - /admin/configuration/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud
+ - /admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud
+ - /admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud
+permissions: 'Site administrators for {% data variables.product.prodname_ghe_server %} who are also owners of the connected {% data variables.product.prodname_ghe_cloud %} organization or enterprise account can enable automatic user license synchronization.'
+versions:
+ ghes: '*'
+type: how_to
+topics:
+ - Enterprise
+ - GitHub Connect
+ - Licensing
+shortTitle: Automatic user license sync
+---
+
+## Acerca de la sincronización de licencias
+
+After you enable license synchronization, you'll be able to view license usage for your entire enterprise across {% data variables.product.prodname_ghe_server %} and {% data variables.product.prodname_ghe_cloud %}. {% data variables.product.prodname_github_connect %} sincroniza la licencia entre {% data variables.product.prodname_ghe_server %} y {% data variables.product.prodname_ghe_cloud %} semanalmente. Paa obtener más información, consulta la sección "[Administrar tu licencia de {% data variables.product.prodname_enterprise %}](/billing/managing-your-license-for-github-enterprise)".
+
+También puedes cargar en forma manual información de licencias de usuario {% data variables.product.prodname_ghe_server %} en {% data variables.product.prodname_ghe_cloud %}. Para obtener más información, consulta la sección "[Sincronizar el uso de licencia entre {% data variables.product.prodname_ghe_server %} y {% data variables.product.prodname_ghe_cloud %}](/billing/managing-your-license-for-github-enterprise/syncing-license-usage-between-github-enterprise-server-and-github-enterprise-cloud)".
+
+## Habilitar la sincronización de licencias
+
+Before enabling license synchronization on {% data variables.product.product_location %}, you must enable {% data variables.product.prodname_github_connect %}. Para obtener más información, consulta la sección "[Administrar {% data variables.product.prodname_github_connect %}](/admin/configuration/configuring-github-connect/managing-github-connect)".
+
+{% data reusables.enterprise-accounts.access-enterprise %}{% ifversion ghes < 3.1 %}{% data reusables.enterprise-accounts.settings-tab %}{% endif %}{% data reusables.enterprise-accounts.github-connect-tab %}
+1. En "El servidor puede sincronizar el recuento y uso de licencias de usuario", usa el menú desplegable y selecciona **Enabled** (Habilitado). 
diff --git a/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise.md b/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise.md
new file mode 100644
index 0000000000..e43764fdbb
--- /dev/null
+++ b/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise.md
@@ -0,0 +1,127 @@
+---
+title: Enabling the dependency graph and Dependabot alerts for your enterprise
+intro: 'You can allow users on {% data variables.product.product_location %} to find and fix vulnerabilities in code dependencies by enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %}.'
+miniTocMaxHeadingLevel: 3
+shortTitle: Dependabot
+redirect_from:
+ - /enterprise/admin/installation/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server
+ - /enterprise/admin/configuration/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server
+ - /enterprise/admin/configuration/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server
+ - /admin/configuration/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server
+ - /admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server
+ - /admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server
+ - /admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account
+permissions: 'Enterprise owners who are also owners of the connected {% data variables.product.prodname_ghe_cloud %} organization or enterprise account can enable the dependency graph and {% data variables.product.prodname_dependabot_alerts %} on {% data variables.product.product_location %}.'
+versions:
+ ghes: '*'
+ ghae: issue-4864
+type: how_to
+topics:
+ - Enterprise
+ - Security
+ - Dependency graph
+ - Dependabot
+---
+
+## Acerca de las alertas para las dependencias vulnerables en {% data variables.product.product_location %}
+
+{% data reusables.dependabot.dependabot-alerts-beta %}
+
+{% data variables.product.prodname_dotcom %} identifica las dependencias vulnerables en los repositorios y crea {% data variables.product.prodname_dependabot_alerts %} en {% data variables.product.product_location %}, utilizando:
+
+- Datos de la {% data variables.product.prodname_advisory_database %}
+- El servicio de gráfica de dependencias
+
+Para obtener más información acerca de estas características, consulta las secciones "[Acerca de la gráfica de dependencias](/github/visualizing-repository-data-with-graphs/about-the-dependency-graph)" y "[Acerca de las alertas para las dependencias vulnerables](/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies)".
+
+### Acerca de la sincronización de datos desde la {% data variables.product.prodname_advisory_database %}
+
+{% data reusables.repositories.tracks-vulnerabilities %}
+
+Puedes conectar a {% data variables.product.product_location %} con el {% data variables.product.prodname_ghe_cloud %} mediante {% data variables.product.prodname_github_connect %}. Una vez que se haya conectado, los datos de vulnerabilidades se sincronizan desde la {% data variables.product.prodname_advisory_database %} hacia tu instancia cada hora. También puedes elegir sincronizar manualmente los datos de vulnerabilidad en cualquier momento. No se han cargado códigos o información sobre el código desde {% data variables.product.product_location %} hasta {% data variables.product.prodname_dotcom_the_website %}.
+
+Únicamente se sincronizan las asesorías que revisa {% data variables.product.company_short %}. {% data reusables.security-advisory.link-browsing-advisory-db %}
+
+### Acerca del escaneo de los repositorios con datos sincronizados desde la {% data variables.product.prodname_advisory_database %}
+
+Para los repositorios que cuenten con las {% data variables.product.prodname_dependabot_alerts %} habilitadas, el escaneo se activa en cualquier subida a la rama predeterminada. Adicionalmente, cuando se agrega un registro de vulnerabilidades nuevo a la instancia, {% data variables.product.prodname_ghe_server %} escanea todos los repositorios existentes en ella y genera alertas para cualquier repositorio que esté vulnerable. Para obtener más información, consulta la sección "[Detección de dependencias vulnerables](/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/about-alerts-for-vulnerable-dependencies#detection-of-vulnerable-dependencies)".
+
+### Acerca de la generación de {% data variables.product.prodname_dependabot_alerts %}
+
+Si habilitas la detección de vulnerabilidades, cuando {% data variables.product.product_location %} reciba información sobre una vulnerabilidad, este identificará a los repositorios de tu instancia que utilicen la versión afectada de la dependencia y genere {% data variables.product.prodname_dependabot_alerts %}. Puedes elegir si quieres notificar a los usuarios automáticamente acerca de las {% data variables.product.prodname_dependabot_alerts %} nuevas o no.
+
+## Habilitar la gráfica de dependencias y las {% data variables.product.prodname_dependabot_alerts %} para las dependencias vulnerables en {% data variables.product.product_location %}
+
+### Prerrequisitos
+
+Para que {% data variables.product.product_location %} detecte las dependencias vulnerables y genere {% data variables.product.prodname_dependabot_alerts %}:
+- You must enable {% data variables.product.prodname_github_connect %}. {% ifversion ghae %}Esto también habilita el servicio de la gráfica de dependencias.{% endif %}{% ifversion ghes or ghae %}Para obtener más información, consulta la sección "[Administrar {% data variables.product.prodname_github_connect %}](/admin/configuration/configuring-github-connect/managing-github-connect)".{% endif %}
+{% ifversion ghes %}- Debes habilitar el servicio de gráficas de dependencia.{% endif %}
+- Debes habilitar el escaneo de vulnerabilidades.
+
+{% ifversion ghes %}
+{% ifversion ghes > 3.1 %}
+Puedes habilitar la gráfica de dependencias a través de la {% data variables.enterprise.management_console %} o del shell administrativo. Te recomendamos que sigas la ruta de la {% data variables.enterprise.management_console %} a menos de que {% data variables.product.product_location %} utilice clústering.
+
+### Habilitar la gráfica de dependencias a través de la {% data variables.enterprise.management_console %}
+{% data reusables.enterprise_site_admin_settings.sign-in %}
+{% data reusables.enterprise_site_admin_settings.access-settings %}
+{% data reusables.enterprise_site_admin_settings.management-console %}
+{% data reusables.enterprise_management_console.advanced-security-tab %}
+1. Debajo de "Seguridad", haz clic en **Gráfica de dependencias**. 
+{% data reusables.enterprise_management_console.save-settings %}
+1. Da clic en **Visitar tu instancia**.
+
+### Habilitar la gráfica de dependencias a través del shell administrativo
+{% endif %}{% ifversion ghes < 3.2 %}
+### Habilitar la gráfica de dependencias
+{% endif %}
+{% data reusables.enterprise_site_admin_settings.sign-in %}
+1. En el shell administrativo, habilita la gráfica de dependencias en {% data variables.product.product_location %}:
+ {% ifversion ghes > 3.1 %}```shell
+ ghe-config app.dependency-graph.enabled true
+ ```
+ {% else %}```shell
+ ghe-config app.github.dependency-graph-enabled true
+ ghe-config app.github.vulnerability-alerting-and-settings-enabled true
+ ```{% endif %}
+ {% note %}
+
+ **Note**: For more information about enabling access to the administrative shell via SSH, see "[Accessing the administrative shell (SSH)](/enterprise/{{ currentVersion }}/admin/configuration/accessing-the-administrative-shell-ssh)."
+
+ {% endnote %}
+2. Aplica la configuración
+ ```shell
+ $ ghe-config-apply
+ ```
+3. Regresa a {% data variables.product.prodname_ghe_server %}.
+{% endif %}
+
+### Habilitar {% data variables.product.prodname_dependabot_alerts %}
+
+{% ifversion ghes %}
+Antes de habilitar {% data variables.product.prodname_dependabot_alerts %} para tu instancia, necesitas habilitar la gráfica de dependencias. Para obtener más información, consulta la sección anterior.
+{% endif %}
+
+{% data reusables.enterprise-accounts.access-enterprise %}
+{%- ifversion ghes < 3.1 %}{% data reusables.enterprise-accounts.settings-tab %}{% endif %}
+{% data reusables.enterprise-accounts.github-connect-tab %}
+1. Dabjo de "Se pueden escanear los repositorios para encontrar vulnerabilidades", selecciona el menú desplegable y haz clic en **Habilitado sin notificaciones**. Opcionalmente, para habilitar las alertas con notificaciones, haz clic en **Habilitado con notificaciones**. 
+
+ {% tip %}
+
+ **Tip**: Te recomendamos configurar las {% data variables.product.prodname_dependabot_alerts %} sin notificaciones durante los primeros días para evitar una sobrecarga de correos electrónicos. Después de algunos días, puedes habilitar las notificaciones para recibir las {% data variables.product.prodname_dependabot_alerts %} como de costumbre.
+
+ {% endtip %}
+
+{% ifversion fpt or ghec or ghes > 3.2 %}
+Cuando habilitas las {% data variables.product.prodname_dependabot_alerts %}, deberías considerar también configurar las {% data variables.product.prodname_actions %} para {% data variables.product.prodname_dependabot_security_updates %}. Esta característica permite que los desarrolladores arreglen las vulnerabilidades en sus dependencias. Para obtener más información, consulta la sección "[Configurar la seguridad y actualizaciones de versión del {% data variables.product.prodname_dependabot %} en tu empresa](/admin/github-actions/enabling-github-actions-for-github-enterprise-server/setting-up-dependabot-updates)".
+{% endif %}
+
+## Ver las dependencias vulnerables en {% data variables.product.product_location %}
+
+Puedes ver todas las vulnerabilidades en {% data variables.product.product_location %} y sincronizar en forma manual los datos de vulnerabilidad desde {% data variables.product.prodname_dotcom_the_website %} para actualizar la lista.
+
+{% data reusables.enterprise_site_admin_settings.access-settings %}
+2. En la barra lateral izquierda, haz clic en **Vulnerabilities** (Vulnerabilidades). 
+3. Para sincronizar los datos de vulnerabilidades, haz clic en **Sync Vulnerabilities now** (Sincronizar vulnerabilidades ahora). 
diff --git a/translations/es-ES/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md b/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-unified-contributions-for-your-enterprise.md
similarity index 55%
rename from translations/es-ES/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md
rename to translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-unified-contributions-for-your-enterprise.md
index 50974a374f..4f50035a79 100644
--- a/translations/es-ES/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md
+++ b/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-unified-contributions-for-your-enterprise.md
@@ -1,7 +1,7 @@
---
-title: Habilitar las contribuciones unificadas entre tu cuenta empresarial y GitHub.com
-shortTitle: Habilitar las contribuciones unificadas
-intro: 'Después de habilitar {% data variables.product.prodname_github_connect %}, puedes permitir {% data variables.product.prodname_ghe_cloud %} que los miembros destaquen su trabajo en {% data variables.product.product_name %} al enviar los recuentos de contribuciones a sus {% data variables.product.prodname_dotcom_the_website %} perfiles.'
+title: Enabling unified contributions for your enterprise
+shortTitle: Unified contributions
+intro: 'You can allow users to include anonymized contribution counts for their work on {% data variables.product.product_location %} in their contribution graphs on {% data variables.product.prodname_dotcom_the_website %}.'
redirect_from:
- /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-and-github-com
- /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-github-com
@@ -10,6 +10,7 @@ redirect_from:
- /enterprise/admin/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom
- /admin/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom
- /admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud/enabling-unified-contributions-between-github-enterprise-server-and-githubcom
+ - /admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom
permissions: 'Enterprise owners who are also owners of the connected {% data variables.product.prodname_ghe_cloud %} organization or enterprise account can enable unified contributions between {% data variables.product.product_location %} and {% data variables.product.prodname_dotcom_the_website %}.'
versions:
ghes: '*'
@@ -22,15 +23,21 @@ topics:
{% data reusables.github-connect.beta %}
+## About unified contributions
+
Como propietario de empresa, puedes permitir que los usuarios finales envíen cuentas de contribuciones anonimizadas para su trabajo desde {% data variables.product.product_location %} hacia su gráfica de contribuciones de {% data variables.product.prodname_dotcom_the_website %}.
-Después de habilitar {% data variables.product.prodname_github_connect %} y de habilitar {% data variables.product.prodname_unified_contributions %} en ambos entornos, los usuarios finales en tu cuenta empresarial pueden conectarse con sus cuentas de {% data variables.product.prodname_dotcom_the_website %} y enviar los recuentos de contribución de {% data variables.product.product_name %} a {% data variables.product.prodname_dotcom_the_website %}. {% data reusables.github-connect.sync-frequency %} Para obtener más información, consulta la sección "[Enviar contribuciones empresariales a tu perfil de {% data variables.product.prodname_dotcom_the_website %}](/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/sending-enterprise-contributions-to-your-githubcom-profile)".
+Después de habilitar las {% data variables.product.prodname_unified_contributions %}, antes de que los usuarios individuales puedan enviar conteos de contribuciones de {% data variables.product.product_location %} a {% data variables.product.prodname_dotcom_the_website %}, cada uno de ellos también debe conectar su cuenta personal de {% data variables.product.product_name %} con una cuenta personal de {% data variables.product.prodname_dotcom_the_website %}. Para obtener más información, consulta la sección "[Enviar contribuciones empresariales a tu perfil de {% data variables.product.prodname_dotcom_the_website %}](/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/sending-enterprise-contributions-to-your-githubcom-profile)".
-Si el propietario de la empresa inhabilita la funcionalidad o los programadores salen de la conexión, los recuentos de contribución de {% data variables.product.product_name %} se eliminarán en {% data variables.product.prodname_dotcom_the_website %}. Si el programador vuelve a conectar sus perfiles luego de inhabilitarlos, se restablecerán los recuentos de contribución para los últimos 90 días.
+{% data reusables.github-connect.sync-frequency %}
+
+Si el propietario de la empresa inhabilita la funcionalidad o si los usuarios individuales deciden no participar en la conexión, el conteo de contribuciones de {% data variables.product.product_name %} se borrará en {% data variables.product.prodname_dotcom_the_website %}. If the user reconnects their profiles after disabling them, the contribution counts for the past 90 days are restored.
{% data variables.product.product_name %} **solo** envía el recuento de contribución y la fuente de ({% data variables.product.product_name %}) para los usuarios conectados. No envía ningún tipo de información sobre la contribución o cómo se realizó.
-Antes de habilitar {% data variables.product.prodname_unified_contributions %} en {% data variables.product.product_location %}, debes conectar {% data variables.product.product_location %} a {% data variables.product.prodname_dotcom_the_website %}. Para obtener más información, consulta la sección "[Conectar tu cuenta empresarial a {% data variables.product.prodname_dotcom_the_website %}](/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud)".
+## Enabling unified contributions
+
+Before enabling {% data variables.product.prodname_unified_contributions %} on {% data variables.product.product_location %}, you must enable {% data variables.product.prodname_github_connect %}. Para obtener más información, consulta la sección "[Administrar {% data variables.product.prodname_github_connect %}](/admin/configuration/configuring-github-connect/managing-github-connect)".
{% ifversion ghes %}
{% data reusables.github-connect.access-dotcom-and-enterprise %}
@@ -42,5 +49,5 @@ Antes de habilitar {% data variables.product.prodname_unified_contributions %} e
1. En "Los usuarios pueden compartir recuentos de contribuciones en {% data variables.product.prodname_dotcom_the_website %}", haz clic en **Request access (Solicita acceso)**. {% ifversion ghes %}
2. [Inicia sesión](https://enterprise.github.com/login) en el sitio {% data variables.product.prodname_ghe_server %} para recibir más instrucciones.
-When you request access, we may redirect you to the {% data variables.product.prodname_ghe_server %} site to check your current terms of service.
+Cuando solicitas acceso, podríamos redireccionarte al sitio de {% data variables.product.prodname_ghe_server %} para verificar tus condiciones de servicio actuales.
{% endif %}
diff --git a/translations/es-ES/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md b/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-unified-search-for-your-enterprise.md
similarity index 50%
rename from translations/es-ES/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md
rename to translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-unified-search-for-your-enterprise.md
index 9261937789..30ac07c55e 100644
--- a/translations/es-ES/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md
+++ b/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-unified-search-for-your-enterprise.md
@@ -1,7 +1,7 @@
---
-title: Enabling unified search between your enterprise account and GitHub.com
-shortTitle: Habilitar la búsqueda unificada
-intro: 'After enabling {% data variables.product.prodname_github_connect %}, you can allow search of {% data variables.product.prodname_dotcom_the_website %} for members of your enterprise on {% data variables.product.product_name %}.'
+title: Enabling unified search for your enterprise
+shortTitle: Unified search
+intro: 'You can allow users to include repositories on {% data variables.product.prodname_dotcom_the_website %} in their search results when searching from {% data variables.product.product_location %}.'
redirect_from:
- /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-and-github-com
- /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-github-com
@@ -10,6 +10,7 @@ redirect_from:
- /enterprise/admin/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom
- /admin/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom
- /admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud/enabling-unified-search-between-github-enterprise-server-and-githubcom
+ - /admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom
permissions: 'Enterprise owners who are also owners of the connected {% data variables.product.prodname_ghe_cloud %} organization or enterprise account can enable unified search between {% data variables.product.product_name %} and {% data variables.product.prodname_dotcom_the_website %}.'
versions:
ghes: '*'
@@ -21,27 +22,30 @@ topics:
- GitHub search
---
+## Acerca de {% data variables.product.prodname_unified_search %}
+
{% data reusables.github-connect.beta %}
-Cuando habilitas la búsqueda unificada, los usuarios pueden ver los resultados de la búsqueda desde contenido público y privado en {% data variables.product.prodname_dotcom_the_website %} cuando buscan desde {% data variables.product.product_location %}.{% ifversion ghae %} en {% data variables.product.prodname_ghe_managed %}{% endif %}.
+Cuando habilitas la búsqueda unificada, los usuarios pueden ver los resultados de búsqueda desde el contenido de {% data variables.product.prodname_dotcom_the_website %} cuando buscan desde {% data variables.product.product_location %}{% ifversion ghae %} en {% data variables.product.prodname_ghe_managed %}{% endif %}.
-Después de habilitar la búsqueda unificada para {% data variables.product.product_location %}, los usuarios individuales también deben conectar sus cuentas de usuario en {% data variables.product.product_name %} con sus cuentas de usuario en {% data variables.product.prodname_dotcom_the_website %} para poder ver los resultados de {% data variables.product.prodname_dotcom_the_website %} en {% data variables.product.product_location %}. Para obtener más información, consulta la sección "[Habilitar la búsqueda de repositorios de {% data variables.product.prodname_dotcom_the_website %} en tu cuenta de empresa privada](/search-github/getting-started-with-searching-on-github/enabling-githubcom-repository-search-from-your-private-enterprise-environment)".
+Puedes elegir permitir los resultados de búsqueda para los repositorios públicos de {% data variables.product.prodname_dotcom_the_website %} y puedes elegir por separado permitir los resultados de búsqueda para los repositorios privados en {% data variables.product.prodname_ghe_cloud %}. If you enable unified search for private repositories, users can only search private repositories that they have access to and that are owned by the connected organization or enterprise account. Para obtener más información, consulta [Acerca de buscar en {% data variables.product.prodname_dotcom %}](/search-github/getting-started-with-searching-on-github/about-searching-on-github/#searching-across-github-enterprise-and-githubcom-simultaneously)".
-Los usuarios no podrán buscar {% data variables.product.product_location %} desde {% data variables.product.prodname_dotcom_the_website %}, incluso si tienen acceso a ambos entornos. Los usuarios solo pueden buscar repositorios privados para los que hayas habilitado {% data variables.product.prodname_unified_search %} y a los que tengan acceso en las organizaciones conectadas {% data variables.product.prodname_ghe_cloud %}. Para obtener más información, consulta [Acerca de buscar en {% data variables.product.prodname_dotcom %}](/search-github/getting-started-with-searching-on-github/about-searching-on-github/#searching-across-github-enterprise-and-githubcom-simultaneously)".
+Users will never be able to search {% data variables.product.product_location %} from {% data variables.product.prodname_dotcom_the_website %}, even if they have access to both environments.
+
+Después de habilitar la búsqueda unificada para {% data variables.product.product_location %}, antes de que los usuarios individuales puedan ver los resultados de búsqueda de {% data variables.product.prodname_dotcom_the_website %} en {% data variables.product.product_location %}, cada uno de ellos también debe conectar su cuenta personal de {% data variables.product.product_name %} con una cuenta personal de {% data variables.product.prodname_dotcom_the_website %}. Para obtener más información, consulta la sección "[Habilitar la búsqueda de repositorios de {% data variables.product.prodname_dotcom_the_website %} en tu cuenta de empresa privada](/search-github/getting-started-with-searching-on-github/enabling-githubcom-repository-search-from-your-private-enterprise-environment)".
Buscar a través de las API REST y GraphQL no incluye {% data variables.product.prodname_dotcom_the_website %} los resultados de búsqueda. No están admitidas la búsqueda avanzada y buscar wikis en {% data variables.product.prodname_dotcom_the_website %}.
+## Habilitar {% data variables.product.prodname_unified_search %}
+
+Before you can enable {% data variables.product.prodname_unified_search %}, you must enable {% data variables.product.prodname_github_connect %}. Para obtener más información, consulta la sección "[Administrar {% data variables.product.prodname_github_connect %}](/admin/configuration/configuring-github-connect/managing-github-connect)".
+
{% ifversion ghes %}
{% data reusables.github-connect.access-dotcom-and-enterprise %}
{% data reusables.enterprise_site_admin_settings.access-settings %}
{% data reusables.enterprise_site_admin_settings.business %}
{% ifversion ghes < 3.1 %}{% data reusables.enterprise-accounts.settings-tab %}{% endif %}{% data reusables.enterprise-accounts.github-connect-tab %}{% else %}
-1. Iniciar sesión en {% data variables.product.product_location %} y {% data variables.product.prodname_dotcom_the_website %}.
+1. Inicia sesión en {% data variables.product.product_location %} y en {% data variables.product.prodname_dotcom_the_website %}.
{% data reusables.enterprise-accounts.access-enterprise %}{% data reusables.enterprise-accounts.github-connect-tab %}{% endif %}
1. En "Los usuarios pueden buscar {% data variables.product.prodname_dotcom_the_website %}", utiliza el menú desplegable y haz clic en **Enabled (Habilitado)**. 
1. De manera opcional, en "Users can search private repositories on (Los usuarios pueden buscar repositorios privados en) {% data variables.product.prodname_dotcom_the_website %}", utiliza el menú desplegable y haz clic en **Enabled (Habilitado)**. 
-
-## Leer más
-
-- "[Conectar tu cuenta empresarial con {% data variables.product.prodname_ghe_cloud %}](/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud)"
-
diff --git a/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md b/translations/es-ES/content/admin/configuration/configuring-github-connect/index.md
similarity index 53%
rename from translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md
rename to translations/es-ES/content/admin/configuration/configuring-github-connect/index.md
index f46553f059..8d195df5ff 100644
--- a/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md
+++ b/translations/es-ES/content/admin/configuration/configuring-github-connect/index.md
@@ -1,6 +1,6 @@
---
-title: Managing connections between your enterprise accounts
-intro: 'With {% data variables.product.prodname_github_connect %}, you can share certain features and data between {% data variables.product.product_location %} and your {% data variables.product.prodname_ghe_cloud %} organization or enterprise account on {% data variables.product.prodname_dotcom_the_website %}.'
+title: Configuring GitHub Connect
+intro: 'With {% data variables.product.prodname_github_connect %}, you can access additional features and workflows by connecting {% data variables.product.product_location %} to {% data variables.product.prodname_ghe_cloud %}.'
redirect_from:
- /enterprise/admin/developer-workflow/connecting-github-enterprise-to-github-com
- /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-and-github-com
@@ -9,6 +9,7 @@ redirect_from:
- /enterprise/admin/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud
- /enterprise/admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud
- /admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud
+ - /admin/configuration/managing-connections-between-your-enterprise-accounts
versions:
ghes: '*'
ghae: '*'
@@ -16,11 +17,12 @@ type: how_to
topics:
- Enterprise
children:
- - /connecting-your-enterprise-account-to-github-enterprise-cloud
- - /enabling-unified-search-between-your-enterprise-account-and-githubcom
- - /enabling-unified-contributions-between-your-enterprise-account-and-githubcom
- - /enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account
- - /enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud
-shortTitle: Connect enterprise accounts
+ - /about-github-connect
+ - /managing-github-connect
+ - /enabling-automatic-user-license-sync-for-your-enterprise
+ - /enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise
+ - /enabling-unified-search-for-your-enterprise
+ - /enabling-unified-contributions-for-your-enterprise
+shortTitle: GitHub Connect
---
diff --git a/translations/es-ES/content/admin/configuration/configuring-github-connect/managing-github-connect.md b/translations/es-ES/content/admin/configuration/configuring-github-connect/managing-github-connect.md
new file mode 100644
index 0000000000..215ca761de
--- /dev/null
+++ b/translations/es-ES/content/admin/configuration/configuring-github-connect/managing-github-connect.md
@@ -0,0 +1,81 @@
+---
+title: Managing GitHub Connect
+shortTitle: Manage GitHub Connect
+intro: 'You can enable {% data variables.product.prodname_github_connect %} to access additional features and workflows for {% data variables.product.product_location %}.'
+redirect_from:
+ - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com
+ - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-server-to-github-com
+ - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-to-githubcom
+ - /enterprise/admin/installation/connecting-github-enterprise-server-to-github-enterprise-cloud
+ - /enterprise/admin/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud
+ - /admin/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud
+ - /admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud/connecting-github-enterprise-server-to-github-enterprise-cloud
+ - /admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud
+versions:
+ ghes: '*'
+ ghae: '*'
+type: how_to
+topics:
+ - Enterprise
+ - GitHub Connect
+ - Infrastructure
+ - Networking
+---
+
+{% data reusables.github-connect.beta %}
+
+## Acerca de {% data variables.product.prodname_github_connect %}
+
+You can access additional features and workflows on {% data variables.product.product_location %} by enabling {% data variables.product.prodname_github_connect %}. Para obtener más información, consulta "[Acerca de {% data variables.product.prodname_github_connect %}](/admin/configuration/configuring-github-connect/about-github-connect)."
+
+Cuando habilitas {% data variables.product.prodname_github_connect %}, configuras una conexión entre {% data variables.product.product_location %} y una organización o cuenta empresarial en {% data variables.product.prodname_ghe_cloud %}. Enabling {% data variables.product.prodname_github_connect %} creates a {% data variables.product.prodname_github_app %} owned by the organization or enterprise account on {% data variables.product.prodname_ghe_cloud %}. {% data variables.product.product_name %} usa las credenciales de {% data variables.product.prodname_github_app %} para hacerle solicitudes a {% data variables.product.prodname_ghe_cloud %}.
+
+{% ifversion ghes %}
+{% data variables.product.prodname_ghe_server %} almacena credenciales desde la {% data variables.product.prodname_github_app %}. The following credentials will be replicated to all nodes in a high availability or cluster environment, and stored in any backups, including snapshots created by {% data variables.product.prodname_enterprise_backup_utilities %}.
+- Un token de autenticación, que es válido durante una hora
+- Una clave privada, que se utiliza para generar un nuevo token de autenticación
+{% endif %}
+
+## Prerrequisitos
+
+To use {% data variables.product.prodname_github_connect %}, you must have an organization or enterprise account on {% data variables.product.prodname_dotcom_the_website %} that uses {% data variables.product.prodname_ghe_cloud %}. You may already have {% data variables.product.prodname_ghe_cloud %} included in your plan. {% data reusables.enterprise.link-to-ghec-trial %}
+
+{% ifversion ghes %}
+To configure a connection, your proxy configuration must allow connectivity to `github.com`, `api.github.com`, and `uploads.github.com`. Para obtener más información, consulta "[Configuring an outbound web proxy server](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-an-outbound-web-proxy-server)."
+{% endif %}
+
+## Habilitar {% data variables.product.prodname_github_connect %}
+
+Los propietarios de empresa que también son propietarios de una cuenta de empresa u organización que utiliza {% data variables.product.prodname_ghe_cloud %} pueden habilitar {% data variables.product.prodname_github_connect %}.
+
+Si estás conectando a {% data variables.product.product_location %} a una organización en {% data variables.product.prodname_ghe_cloud %} que no le pertenezca a una cuenta empresarial, debes iniciar sesión en {% data variables.product.prodname_dotcom_the_website %} como propietario de organización.
+
+Si estás conectando {% data variables.product.product_location %} a una organización de {% data variables.product.prodname_ghe_cloud %} que le pertenezca a una cuenta empresarial o si la conectas a la cuenta empresarial misma, deberás iniciar sesión en {% data variables.product.prodname_dotcom_the_website %} como propietario de empresa.
+
+{% ifversion ghes %}
+1. Iniciar sesión en {% data variables.product.product_location %} y {% data variables.product.prodname_dotcom_the_website %}.
+{% data reusables.enterprise-accounts.access-enterprise %}{% ifversion ghes < 3.1 %}{% data reusables.enterprise-accounts.settings-tab %}{% endif %}{% data reusables.enterprise-accounts.github-connect-tab %}{% else %}
+1. Iniciar sesión en {% data variables.product.product_location %} y {% data variables.product.prodname_dotcom_the_website %}.
+{% data reusables.enterprise-accounts.access-enterprise %}{% data reusables.enterprise-accounts.github-connect-tab %}{% endif %}
+1. En "{% data variables.product.prodname_github_connect %} aún no está habilitado", haz clic en **Enable {% data variables.product.prodname_github_connect %}** (Habilitar). Cuando haces clic en **Habilitar {% data variables.product.prodname_github_connect %}**, estás confirmando que estás de acuerdo con los "Términos de {% data variables.product.prodname_dotcom %} para las Características y Productos Adicionales".
+{% ifversion ghes %}
+{% else %}
+
+{% endif %}
+1. Al lado de la cuenta de usuario u organización a la que quieres conectarte, haz clic en **Connect** (Conectar). 
+
+## Inhabilitar las {% data variables.product.prodname_github_connect %}
+
+Los propietarios de empresas pueden inhabilitar {% data variables.product.prodname_github_connect %}.
+
+Cuando te desconectas de {% data variables.product.prodname_ghe_cloud %}, se elimina la {% data variables.product.prodname_github_connect %} {% data variables.product.prodname_github_app %} de tu cuenta de empresa u organización, y las credenciales almacenadas en {% data variables.product.product_location %} se eliminan.
+
+{% data reusables.enterprise-accounts.access-enterprise %}{% ifversion ghes < 3.1 %}{% data reusables.enterprise-accounts.settings-tab %}{% endif %}{% data reusables.enterprise-accounts.github-connect-tab %}
+1. Next to the enterprise account or organization you'd like to disconnect, click **Disable {% data variables.product.prodname_github_connect %}**.
+{% ifversion ghes %}
+ 
+1. Read the information about disconnecting and click **Disable {% data variables.product.prodname_github_connect %}**. 
+{% else %}
+ 
+1. Lee la información sobre la desconexión y haz clic en **Inhabilitar {% data variables.product.prodname_github_connect %}**. 
+{% endif %}
diff --git a/translations/es-ES/content/admin/configuration/configuring-your-enterprise/configuring-custom-footers.md b/translations/es-ES/content/admin/configuration/configuring-your-enterprise/configuring-custom-footers.md
index 462735967f..5e08da09e0 100644
--- a/translations/es-ES/content/admin/configuration/configuring-your-enterprise/configuring-custom-footers.md
+++ b/translations/es-ES/content/admin/configuration/configuring-your-enterprise/configuring-custom-footers.md
@@ -4,6 +4,7 @@ intro: 'You can give users easy access to enterprise-specific links by adding cu
versions:
ghec: '*'
ghes: '>=3.4'
+ ghae: issue-5487
type: how_to
topics:
- Enterprise
@@ -15,7 +16,7 @@ Enterprise owners can configure {% data variables.product.product_name %} to sho

-El pie de página personalizado se muestra sobre el pie de página de {% data variables.product.prodname_dotcom %} {% ifversion ghes or ghae %}para todos los usuarios, en todas las páginas de {% data variables.product.product_name %}{% else %}para todos los miembros y colaboradores de la empresa, en todas las páginas de organización y repositorios y en aquellas organizaciones que pertenezcan a la empresa{% endif %}.
+El pie de página personalizado se muestra sobre el pie de página de {% data variables.product.prodname_dotcom %} {% ifversion ghes or ghae %}para todos los usuarios, en todas las páginas de {% data variables.product.product_name %}{% elsif ghec %}para todos los miembros y colaboradores de la empresa, en todas las páginas de organización y repositorios y en aquellas organizaciones que pertenezcan a la empresa{% endif %}.
## Configuring custom footers for your enterprise
diff --git a/translations/es-ES/content/admin/configuration/index.md b/translations/es-ES/content/admin/configuration/index.md
index a7a39986be..dd5448be1a 100644
--- a/translations/es-ES/content/admin/configuration/index.md
+++ b/translations/es-ES/content/admin/configuration/index.md
@@ -13,7 +13,7 @@ topics:
children:
- /configuring-your-enterprise
- /configuring-network-settings
- - /managing-connections-between-your-enterprise-accounts
+ - /configuring-github-connect
---
{% ifversion ghes %}
diff --git a/translations/es-ES/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud.md b/translations/es-ES/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud.md
deleted file mode 100644
index 78a244e8e7..0000000000
--- a/translations/es-ES/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud.md
+++ /dev/null
@@ -1,31 +0,0 @@
----
-title: Habilitar la sincronización automática de licencias de usuario entre el servidor de GitHub Enterprise y GitHub Enterprise Cloud
-intro: 'Puedes conectar {% data variables.product.product_location_enterprise %} a {% data variables.product.prodname_ghe_cloud %} y permitir que {% data variables.product.prodname_ghe_server %} cargue información de licencias de usuario en tu cuenta de empresa en {% data variables.product.prodname_dotcom_the_website %}.'
-redirect_from:
- - /enterprise/admin/installation/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud
- - /enterprise/admin/configuration/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud
- - /admin/configuration/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud
- - /admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud
-permissions: 'Site administrators for {% data variables.product.prodname_ghe_server %} who are also owners of the connected {% data variables.product.prodname_ghe_cloud %} organization or enterprise account can enable automatic user license synchronization.'
-versions:
- ghes: '*'
-type: how_to
-topics:
- - Enterprise
- - GitHub Connect
- - Licensing
-shortTitle: Habilitar la sincronización de licencias de usuario
----
-
-## Acerca de la sincronización de licencias
-
-Después de que habilitas la sincronización de licencias, podrás ver el uso de licencias para toda tu cuenta empresarial, a través de {% data variables.product.prodname_ghe_server %} y de {% data variables.product.prodname_ghe_cloud %}. {% data variables.product.prodname_github_connect %} sincroniza la licencia entre {% data variables.product.prodname_ghe_server %} y {% data variables.product.prodname_ghe_cloud %} semanalmente. Paa obtener más información, consulta la sección "[Administrar tu licencia de {% data variables.product.prodname_enterprise %}](/billing/managing-your-license-for-github-enterprise)".
-
-También puedes cargar en forma manual información de licencias de usuario {% data variables.product.prodname_ghe_server %} en {% data variables.product.prodname_ghe_cloud %}. Para obtener más información, consulta la sección "[Conectar tu cuenta empresarial a {% data variables.product.prodname_ghe_cloud %}](/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud)".
-
-## Habilitar la sincronización de licencias
-
-Antes de habilitar la sincronización de licencias en {% data variables.product.product_location_enterprise %}, debes conectar {% data variables.product.product_location_enterprise %} a {% data variables.product.prodname_dotcom_the_website %}. Para obtener más información, consulta la sección "[Conectar tu cuenta empresarial a {% data variables.product.prodname_ghe_cloud %}](/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud)".
-
-{% data reusables.enterprise-accounts.access-enterprise %}{% ifversion ghes < 3.1 %}{% data reusables.enterprise-accounts.settings-tab %}{% endif %}{% data reusables.enterprise-accounts.github-connect-tab %}
-1. En "El servidor puede sincronizar el recuento y uso de licencias de usuario", usa el menú desplegable y selecciona **Enabled** (Habilitado). 
diff --git a/translations/es-ES/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md b/translations/es-ES/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md
deleted file mode 100644
index 64899b57c1..0000000000
--- a/translations/es-ES/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md
+++ /dev/null
@@ -1,130 +0,0 @@
----
-title: Enabling the dependency graph and Dependabot alerts on your enterprise account
-intro: 'You can connect {% data variables.product.product_location %} to {% data variables.product.prodname_ghe_cloud %} and enable the dependency graph and {% data variables.product.prodname_dependabot_alerts %} in repositories in your instance.'
-miniTocMaxHeadingLevel: 3
-shortTitle: Enable dependency analysis
-redirect_from:
- - /enterprise/admin/installation/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server
- - /enterprise/admin/configuration/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server
- - /enterprise/admin/configuration/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server
- - /admin/configuration/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server
- - /admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server
- - /admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server
-permissions: 'Enterprise owners who are also owners of the connected {% data variables.product.prodname_ghe_cloud %} organization or enterprise account can enable the dependency graph and {% data variables.product.prodname_dependabot_alerts %} on {% data variables.product.product_location %}.'
-versions:
- ghes: '*'
- ghae: issue-4864
-type: how_to
-topics:
- - Enterprise
- - Security
- - Dependency graph
- - Dependabot
----
-## About alerts for vulnerable dependencies on {% data variables.product.product_location %}
-
-{% data reusables.dependabot.dependabot-alerts-beta %}
-
-{% data variables.product.prodname_dotcom %} identifies vulnerable dependencies in repositories and creates {% data variables.product.prodname_dependabot_alerts %} on {% data variables.product.product_location %}, using:
-
-- Data from the {% data variables.product.prodname_advisory_database %}
-- The dependency graph service
-
-For more information about these features, see "[About the dependency graph](/github/visualizing-repository-data-with-graphs/about-the-dependency-graph)" and "[About alerts for vulnerable dependencies](/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies)."
-
-### About synchronization of data from the {% data variables.product.prodname_advisory_database %}
-
-{% data reusables.repositories.tracks-vulnerabilities %}
-
-You can connect {% data variables.product.product_location %} to {% data variables.product.prodname_dotcom_the_website %} with {% data variables.product.prodname_github_connect %}. Once connected, vulnerability data is synced from the {% data variables.product.prodname_advisory_database %} to your instance once every hour. You can also choose to manually sync vulnerability data at any time. No code or information about code from {% data variables.product.product_location %} is uploaded to {% data variables.product.prodname_dotcom_the_website %}.
-
-Only {% data variables.product.company_short %}-reviewed advisories are synchronized. {% data reusables.security-advisory.link-browsing-advisory-db %}
-
-### About scanning of repositories with synchronized data from the {% data variables.product.prodname_advisory_database %}
-
-For repositories with {% data variables.product.prodname_dependabot_alerts %} enabled, scanning is triggered on any push to the default branch that contains a manifest file or lock file. Additionally, when a new vulnerability record is added to the instance, {% data variables.product.prodname_ghe_server %} scans all existing repositories in that instance and generates alerts for any repository that is vulnerable. For more information, see "[Detection of vulnerable dependencies](/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/about-alerts-for-vulnerable-dependencies#detection-of-vulnerable-dependencies)."
-
-
-### About generation of {% data variables.product.prodname_dependabot_alerts %}
-
-If you enable vulnerability detection, when {% data variables.product.product_location %} receives information about a vulnerability, it identifies repositories in your instance that use the affected version of the dependency and generates {% data variables.product.prodname_dependabot_alerts %}. You can choose whether or not to notify users automatically about new {% data variables.product.prodname_dependabot_alerts %}.
-
-## Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies on {% data variables.product.product_location %}
-
-### Prerequisites
-
-For {% data variables.product.product_location %} to detect vulnerable dependencies and generate {% data variables.product.prodname_dependabot_alerts %}:
-- You must connect {% data variables.product.product_location %} to {% data variables.product.prodname_dotcom_the_website %}. {% ifversion ghae %}This also enables the dependency graph service. {% endif %}{% ifversion ghes or ghae %}For more information, see "[Connecting your enterprise account to {% data variables.product.prodname_ghe_cloud %}](/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud)."{% endif %}
-{% ifversion ghes %}- You must enable the dependency graph service.{% endif %}
-- You must enable vulnerability scanning.
-
-{% ifversion ghes %}
-{% ifversion ghes > 3.1 %}
-You can enable the dependency graph via the {% data variables.enterprise.management_console %} or the administrative shell. We recommend you follow the {% data variables.enterprise.management_console %} route unless {% data variables.product.product_location %} uses clustering.
-
-### Enabling the dependency graph via the {% data variables.enterprise.management_console %}
-{% data reusables.enterprise_site_admin_settings.sign-in %}
-{% data reusables.enterprise_site_admin_settings.access-settings %}
-{% data reusables.enterprise_site_admin_settings.management-console %}
-{% data reusables.enterprise_management_console.advanced-security-tab %}
-1. Under "Security," click **Dependency graph**.
-
-{% data reusables.enterprise_management_console.save-settings %}
-1. Click **Visit your instance**.
-
-### Enabling the dependency graph via the administrative shell
-{% endif %}{% ifversion ghes < 3.2 %}
-### Enabling the dependency graph
-{% endif %}
-{% data reusables.enterprise_site_admin_settings.sign-in %}
-1. In the administrative shell, enable the dependency graph on {% data variables.product.product_location %}:
- {% ifversion ghes > 3.1 %}```shell
- ghe-config app.dependency-graph.enabled true
- ```
- {% else %}```shell
- ghe-config app.github.dependency-graph-enabled true
- ghe-config app.github.vulnerability-alerting-and-settings-enabled true
- ```{% endif %}
- {% note %}
-
- **Note**: For more information about enabling access to the administrative shell via SSH, see "[Accessing the administrative shell (SSH)](/enterprise/{{ currentVersion }}/admin/configuration/accessing-the-administrative-shell-ssh)."
-
- {% endnote %}
-2. Apply the configuration.
- ```shell
- $ ghe-config-apply
- ```
-3. Return to {% data variables.product.prodname_ghe_server %}.
-{% endif %}
-
-### Enabling {% data variables.product.prodname_dependabot_alerts %}
-
-{% ifversion ghes %}
-Before enabling {% data variables.product.prodname_dependabot_alerts %} for your instance, you need to enable the dependency graph. For more information, see above.
-{% endif %}
-
-{% data reusables.enterprise-accounts.access-enterprise %}
-{%- ifversion ghes < 3.1 %}{% data reusables.enterprise-accounts.settings-tab %}{% endif %}
-{% data reusables.enterprise-accounts.github-connect-tab %}
-1. Under "Repositories can be scanned for vulnerabilities", select the drop-down menu and click **Enabled without notifications**. Optionally, to enable alerts with notifications, click **Enabled with notifications**.
- 
-
- {% tip %}
-
- **Tip**: We recommend configuring {% data variables.product.prodname_dependabot_alerts %} without notifications for the first few days to avoid an overload of emails. After a few days, you can enable notifications to receive {% data variables.product.prodname_dependabot_alerts %} as usual.
-
- {% endtip %}
-
-{% ifversion fpt or ghec or ghes > 3.2 %}
-When you enable {% data variables.product.prodname_dependabot_alerts %}, you should consider also setting up {% data variables.product.prodname_actions %} for {% data variables.product.prodname_dependabot_security_updates %}. This feature allows developers to fix vulnerabilities in their dependencies. For more information, see "[Setting up {% data variables.product.prodname_dependabot %} security and version updates on your enterprise](/admin/github-actions/enabling-github-actions-for-github-enterprise-server/setting-up-dependabot-updates)."
-{% endif %}
-
-## Viewing vulnerable dependencies on {% data variables.product.product_location %}
-
-You can view all vulnerabilities in {% data variables.product.product_location %} and manually sync vulnerability data from {% data variables.product.prodname_dotcom_the_website %} to update the list.
-
-{% data reusables.enterprise_site_admin_settings.access-settings %}
-2. In the left sidebar, click **Vulnerabilities**.
- 
-3. To sync vulnerability data, click **Sync Vulnerabilities now**.
- 
diff --git a/translations/es-ES/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md b/translations/es-ES/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md
deleted file mode 100644
index d3bb369b92..0000000000
--- a/translations/es-ES/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md
+++ /dev/null
@@ -1,26 +0,0 @@
----
-title: Administrar las conexiones entre tus cuentas empresariales
-intro: 'Con {% data variables.product.prodname_github_connect %}, puedes compartir determinadas características y datos entre {% data variables.product.product_location %} y la cuenta de tu organización u emprendimiento {% data variables.product.prodname_ghe_cloud %} en {% data variables.product.prodname_dotcom_the_website %}.'
-redirect_from:
- - /enterprise/admin/developer-workflow/connecting-github-enterprise-to-github-com
- - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-and-github-com
- - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-server-and-github-com
- - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-and-githubcom
- - /enterprise/admin/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud
- - /enterprise/admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud
- - /admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud
-versions:
- ghes: '*'
- ghae: '*'
-type: how_to
-topics:
- - Enterprise
-children:
- - /connecting-your-enterprise-account-to-github-enterprise-cloud
- - /enabling-unified-search-between-your-enterprise-account-and-githubcom
- - /enabling-unified-contributions-between-your-enterprise-account-and-githubcom
- - /enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account
- - /enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud
-shortTitle: Conectar cuentas empresariales
----
-
diff --git a/translations/es-ES/content/admin/enterprise-management/caching-repositories/about-repository-caching.md b/translations/es-ES/content/admin/enterprise-management/caching-repositories/about-repository-caching.md
index 83ffd075ac..db106b2b51 100644
--- a/translations/es-ES/content/admin/enterprise-management/caching-repositories/about-repository-caching.md
+++ b/translations/es-ES/content/admin/enterprise-management/caching-repositories/about-repository-caching.md
@@ -14,7 +14,7 @@ If you have teams and CI farms located around the world, you may experience redu
A repository cache eliminates the need for {% data variables.product.product_name %} to transmit the same Git data over a long-haul network link multiple times to serve multiple clients, by serving your repository data close to CI farms and distributed teams. For instance, if your primary instance is in North America and you also have a large presence in Asia, you will benefit from setting up the repository cache in Asia for use by CI runners there.
-The repository cache listens to the primary instance, whether that's a single instance or a geo-replicated set of instances, for changes to Git data. CI farms and other read-heavy consumers clone and fetch from the repository cache instead of the primary instance. Changes are propagated across the network, at periodic intervals, once per cache instance rather than once per client. Git data will typically be visible on the repository cache within several minutes after the data is pushed to the primary instance.
+The repository cache listens to the primary instance, whether that's a single instance or a geo-replicated set of instances, for changes to Git data. CI farms and other read-heavy consumers clone and fetch from the repository cache instead of the primary instance. Changes are propagated across the network, at periodic intervals, once per cache instance rather than once per client. Git data will typically be visible on the repository cache within several minutes after the data is pushed to the primary instance. {% ifversion ghes > 3.3 %}The [`cache_sync` webhook](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#cache_sync) can be used by CI systems to react to data being available in the cache.{% endif %}
You have fine-grained control over which repositories are allowed to sync to the repository cache.
diff --git a/translations/es-ES/content/admin/github-actions/enabling-github-actions-for-github-enterprise-server/setting-up-dependabot-updates.md b/translations/es-ES/content/admin/github-actions/enabling-github-actions-for-github-enterprise-server/setting-up-dependabot-updates.md
index 5ebd02f920..9fef3b2a36 100644
--- a/translations/es-ES/content/admin/github-actions/enabling-github-actions-for-github-enterprise-server/setting-up-dependabot-updates.md
+++ b/translations/es-ES/content/admin/github-actions/enabling-github-actions-for-github-enterprise-server/setting-up-dependabot-updates.md
@@ -37,7 +37,7 @@ Both types of {% data variables.product.prodname_dependabot %} update have the f
- Configure {% data variables.product.product_location %} to use {% data variables.product.prodname_actions %}. For more information, see "[Getting started with {% data variables.product.prodname_actions %} for GitHub Enterprise Server](/admin/github-actions/enabling-github-actions-for-github-enterprise-server/getting-started-with-github-actions-for-github-enterprise-server)."
- Set up one or more {% data variables.product.prodname_actions %} self-hosted runners for {% data variables.product.prodname_dependabot %}. For more information, see "[Setting up self-hosted runners for {% data variables.product.prodname_dependabot %} updates](#setting-up-self-hosted-runners-for-dependabot-updates)" below.
-Additionally, {% data variables.product.prodname_dependabot_security_updates %} rely on the dependency graph, vulnerability data from {% data variables.product.prodname_github_connect %}, and {% data variables.product.prodname_dependabot_alerts %}. These features must be enabled on {% data variables.product.product_location %}. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} on your enterprise account](/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account)."
+Additionally, {% data variables.product.prodname_dependabot_security_updates %} rely on the dependency graph, vulnerability data from {% data variables.product.prodname_github_connect %}, and {% data variables.product.prodname_dependabot_alerts %}. These features must be enabled on {% data variables.product.product_location %}. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} for your enterprise](/admin/configuration/configuring-github-connect/enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise)."
## Setting up self-hosted runners for {% data variables.product.prodname_dependabot %} updates
diff --git a/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-cloud.md b/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-cloud.md
index 410b6e699e..53213dea69 100644
--- a/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-cloud.md
+++ b/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-cloud.md
@@ -13,7 +13,7 @@ topics:
## Acerca del {% data variables.product.prodname_actions %} en {% data variables.product.prodname_ghe_cloud %}
-{% data variables.product.prodname_actions %} is enabled for your enterprise by default. To get started using {% data variables.product.prodname_actions %} within your enterprise, you can manage the policies that control how enterprise members use {% data variables.product.prodname_actions %} and optionally add self-hosted runners to run workflows.
+{% data variables.product.prodname_actions %} is enabled for your enterprise by default. Para comenzar a utilizar las {% data variables.product.prodname_actions %} dentro de tu empresa, puedes administrar las políticas que controlan cómo los miembros empresariales utilizan estas {% data variables.product.prodname_actions %} y, opcionalmente, agregar ejecutores auto-hospedados a los flujos de trabajo.
{% data reusables.actions.introducing-enterprise %}
diff --git a/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server.md b/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server.md
index ac79c45853..3d403eeba3 100644
--- a/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server.md
+++ b/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server.md
@@ -82,7 +82,7 @@ La simultaneidad máxima se midió utilizando repositorios múltiples, una durac
{%- endif %}
-If you plan to enable {% data variables.product.prodname_actions %} for the users of an existing instance, review the levels of activity for users and automations on the instance and ensure that you have provisioned adequate CPU and memory for your users. Para obtener más información acerca de cómo monitorear la capacidad y rendimiento de {% data variables.product.prodname_ghe_server %}, consulta la sección "[Monitorear tu aplicativo](/admin/enterprise-management/monitoring-your-appliance)".
+Si planeas habilitar las {% data variables.product.prodname_actions %} para los usuarios de una instancia existente, revisa los niveles de actividad para los usuarios y automatizaciones en la instancia y asegúrate de haber proporcionado memoria y CPU adecuados para tus usuarios. Para obtener más información acerca de cómo monitorear la capacidad y rendimiento de {% data variables.product.prodname_ghe_server %}, consulta la sección "[Monitorear tu aplicativo](/admin/enterprise-management/monitoring-your-appliance)".
Para obtener más información acerca de los requisitos mínimos de {% data variables.product.product_location %}, consulta las consideraciones de hardware para la plataforma de tu instancia.
diff --git a/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/introducing-github-actions-to-your-enterprise.md b/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/introducing-github-actions-to-your-enterprise.md
index 647633de22..e8623f1dd8 100644
--- a/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/introducing-github-actions-to-your-enterprise.md
+++ b/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/introducing-github-actions-to-your-enterprise.md
@@ -20,19 +20,19 @@ topics:
{% data reusables.enterprise.upgrade-ghes-for-actions %}
-Before you introduce {% data variables.product.prodname_actions %} to a large enterprise, you first need to plan your adoption and make decisions about how your enterprise will use {% data variables.product.prodname_actions %} to best support your unique needs.
+Antes de que incluyas las {% data variables.product.prodname_actions %} en una empresa grande, primero necesitas planear tu adopción y tomar las decisiones de cómo tu empresa utilizará {% data variables.product.prodname_actions %} para apoyar de la mejor forma a tus necesidades únicas.
## Governance and compliance
You should create a plan to govern your enterprise's use of {% data variables.product.prodname_actions %} and meet your compliance obligations.
-Determine which actions your developers will be allowed to use. {% ifversion ghes %}First, decide whether you'll enable access to actions from outside your instance. {% data reusables.actions.access-actions-on-dotcom %} For more information, see "[About using actions in your enterprise](/admin/github-actions/managing-access-to-actions-from-githubcom/about-using-actions-in-your-enterprise)."
+Determine which actions your developers will be allowed to use. {% ifversion ghes %}First, decide whether you'll enable access to actions from outside your instance. {% data reusables.actions.access-actions-on-dotcom %} Para obtener más información, consulta la sección "[Acerca de utilizar acciones en tu empresa](/admin/github-actions/managing-access-to-actions-from-githubcom/about-using-actions-in-your-enterprise)".
Then,{% else %}First,{% endif %} decide whether you'll allow third-party actions that were not created by {% data variables.product.company_short %}. You can configure the actions that are allowed to run at the repository, organization, and enterprise levels and can choose to only allow actions that are created by {% data variables.product.company_short %}. If you do allow third-party actions, you can limit allowed actions to those created by verified creators or a list of specific actions. Para obtener más información, consulta las secciones "[Administrar los ajustes de las {% data variables.product.prodname_actions %} para un repositorio](/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#managing-github-actions-permissions-for-your-repository)", "[Inhabilitar o limitar las {% data variables.product.prodname_actions %} para tu organización](/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#managing-github-actions-permissions-for-your-organization)" y "[Requerir políticas para las {% data variables.product.prodname_actions %} en tu empresa](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-to-restrict-the-use-of-actions-in-your-enterprise)".

-{% ifversion ghec or ghae-issue-4757-and-5856 %}
+{% ifversion ghec or ghae-issue-4757 %}
Consider combining OpenID Connect (OIDC) with reusable workflows to enforce consistent deployments across your repository, organization, or enterprise. Puedes hacerlo si defines las condiciones de confianza en los roles de la nube con base en los flujos reutilizables. For more information, see "[Using OpenID Connect with reusable workflows](/actions/deployment/security-hardening-your-deployments/using-openid-connect-with-reusable-workflows)."
{% endif %}
@@ -66,15 +66,19 @@ There is significant risk in sourcing actions from third-party repositories on {
## Innersourcing
-Think about how your enterprise can use features of {% data variables.product.prodname_actions %} to innersource workflows. Innersourcing is a way to incorporate the benefits of open source methodologies into your internal software development cycle. For more information, see [An introduction to innersource](https://resources.github.com/whitepapers/introduction-to-innersource/) in {% data variables.product.company_short %} Resources.
+Think about how your enterprise can use features of {% data variables.product.prodname_actions %} to innersource automation. Innersourcing is a way to incorporate the benefits of open source methodologies into your internal software development cycle. For more information, see [An introduction to innersource](https://resources.github.com/whitepapers/introduction-to-innersource/) in {% data variables.product.company_short %} Resources.
+
+{% data reusables.actions.internal-actions-summary %}
{% ifversion ghec or ghes > 3.3 or ghae-issue-4757 %}
With reusable workflows, your team can call one workflow from another workflow, avoiding exact duplication. Reusable workflows promote best practice by helping your team use workflows that are well designed and have already been tested. Para obtener más información, consulta la sección "[Reutilizar flujos de trabajo](/actions/learn-github-actions/reusing-workflows)".
{% endif %}
-To provide a starting place for developers building new workflows, you can use starter workflows. This not only saves time for your developers, but promotes consistency and best practice across your enterprise. For more information, see "[Creating starter workflows for your organization](/actions/learn-github-actions/creating-starter-workflows-for-your-organization)."
+To provide a starting place for developers building new workflows, you can use starter workflows. This not only saves time for your developers, but promotes consistency and best practice across your enterprise. Para obtener más información, consulta la sección "[Crear flujos de trabajo iniciales para tu organización](/actions/learn-github-actions/creating-starter-workflows-for-your-organization)".
+{% if not internal-actions %}
Whenever your workflow developers want to use an action that's stored in a private repository, they must configure the workflow to clone the repository first. To reduce the number of repositories that must be cloned, consider grouping commonly used actions in a single repository. Para obtener más información, consulta la sección "[Acerca de las acciones personalizadas](/actions/creating-actions/about-custom-actions#choosing-a-location-for-your-action)".
+{% endif %}
## Managing resources
@@ -82,7 +86,7 @@ You should plan for how you'll manage the resources required to use {% data vari
### Ejecutores
-{% data variables.product.prodname_actions %} workflows require runners.{% ifversion ghec %} You can choose to use {% data variables.product.prodname_dotcom %}-hosted runners or self-hosted runners. {% data variables.product.prodname_dotcom %}-hosted runners are convenient because they are managed by {% data variables.product.company_short %}, who handles maintenance and upgrades for you. However, you may want to consider self-hosted runners if you need to run a workflow that will access resources behind your firewall or you want more control over the resources, configuration, or geographic location of your runner machines. Para obtener más información, consulta las secciones "[Acerca de los ejecutores hospedados en {% data variables.product.prodname_dotcom %}](/actions/using-github-hosted-runners/about-github-hosted-runners)" y "[Acerca de los ejecutores auto-hospedados](/actions/hosting-your-own-runners/about-self-hosted-runners)".{% else %} Necesitarás hospedar tus propios ejecutores instalando la aplicación de ejecutores auto-hospedados de {% data variables.product.prodname_actions %} en tus propias máquinas. Para obtener más información, consulta la sección "[Acerca de los ejecutores auto-hospedados](/actions/hosting-your-own-runners/about-self-hosted-runners)".{% endif %}
+{% data variables.product.prodname_actions %} workflows require runners.{% ifversion ghec %} You can choose to use {% data variables.product.prodname_dotcom %}-hosted runners or self-hosted runners. {% data variables.product.prodname_dotcom %}-hosted runners are convenient because they are managed by {% data variables.product.company_short %}, who handles maintenance and upgrades for you. Sin embargo, podrías querer considerar los ejecutores auto-hospedados si necesitas ejecutar un flujo de trabajo que accederá a los recursos tras tu cortafuegos o si quieres tener más control sobre los recursos, configuración o ubicación geográfica de tus máquinas de ejecutores. Para obtener más información, consulta las secciones "[Acerca de los ejecutores hospedados en {% data variables.product.prodname_dotcom %}](/actions/using-github-hosted-runners/about-github-hosted-runners)" y "[Acerca de los ejecutores auto-hospedados](/actions/hosting-your-own-runners/about-self-hosted-runners)".{% else %} Necesitarás hospedar tus propios ejecutores instalando la aplicación de ejecutores auto-hospedados de {% data variables.product.prodname_actions %} en tus propias máquinas. Para obtener más información, consulta la sección "[Acerca de los ejecutores auto-hospedados](/actions/hosting-your-own-runners/about-self-hosted-runners)".{% endif %}
{% ifversion ghec %}Si estás utilizando ejecutores auto-hospedados, tienes que decidir si quieres utilizar máquinas físicas, virtuales o contenedores.{% else %}Decide si quieres utilizar máquinas físicas, virtuales o contenedores para tus ejecutores auto-hospedados.{% endif %} Las máquinas físicas conservarán los restos de los jobs anteriores, así como las máquinas virtuales, a menos de que utilices una imagen nueva para cada job o que limpies las máquinas después de cada ejecución de un job. If you choose containers, you should be aware that the runner auto-updating will shut down the container, which can cause workflows to fail. You should come up with a solution for this by preventing auto-updates or skipping the command to kill the container.
@@ -118,7 +122,7 @@ Some storage is included in your subscription, but additional storage will affec
## Tracking usage
-You should consider making a plan to track your enterprise's usage of {% data variables.product.prodname_actions %}, such as how often workflows are running, how many of those runs are passing and failing, and which repositories are using which workflows.
+Debes considerar hacer un plan para rastrear el uso que tu empresa tiene para las {% data variables.product.prodname_actions %}, tal como qué tan a menudo se ejecutan los flujos de trabajo, cuántas de estas ejecuciones están pasando y fallando y qué repositorios están utilizando cuáles flujos de trabajo.
{% ifversion ghec %}
You can see basic details of storage and data transfer usage of {% data variables.product.prodname_actions %} for each organization in your enterprise via your billing settings. Para obtener más información, consulta la sección "[Visualizar tu uso de {% data variables.product.prodname_actions %}](/billing/managing-billing-for-github-actions/viewing-your-github-actions-usage#viewing-github-actions-usage-for-your-enterprise-account)".
diff --git a/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/migrating-your-enterprise-to-github-actions.md b/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/migrating-your-enterprise-to-github-actions.md
index b6801ced77..552f01c4bb 100644
--- a/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/migrating-your-enterprise-to-github-actions.md
+++ b/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/migrating-your-enterprise-to-github-actions.md
@@ -20,7 +20,7 @@ This guide addresses specific considerations for migrations. Para obtener inform
## Planning your migration
-Before you begin migrating your enterprise to {% data variables.product.prodname_actions %}, you should identify which workflows will be migrated and how those migrations will affect your teams, then plan how and when you will complete the migrations.
+Antes de que comiences a migrar tu empresa a {% data variables.product.prodname_actions %}, debes identificar qué flujos de trabajo se migrarán y cómo afectarán dichas migraciones a tus equipos, posteriormente, deberás planear cómo y cuándo completarás las migraciones.
### Leveraging migration specialists
diff --git a/translations/es-ES/content/admin/guides.md b/translations/es-ES/content/admin/guides.md
index c8b10f2083..0fc246777c 100644
--- a/translations/es-ES/content/admin/guides.md
+++ b/translations/es-ES/content/admin/guides.md
@@ -53,11 +53,11 @@ includeGuides:
- /admin/configuration/configuring-your-enterprise/managing-github-mobile-for-your-enterprise
- /admin/configuration/connecting-your-enterprise-account-to-github-enterprise-cloud
- /admin/configuration/enabling-and-scheduling-maintenance-mode
- - /admin/configuration/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud
+ - /admin/configuration/configuring-github-connect/enabling-automatic-user-license-sync-for-your-enterprise
- /admin/configuration/enabling-private-mode
- /admin/configuration/enabling-subdomain-isolation
- - /admin/configuration/enabling-unified-contributions-between-your-enterprise-account-and-githubcom
- - /admin/configuration/enabling-unified-search-between-your-enterprise-account-and-githubcom
+ - /admin/configuration/configuring-github-connect/enabling-unified-contributions-for-your-enterprise
+ - /admin/configuration/configuring-github-connect/enabling-unified-search-for-your-enterprise
- /admin/configuration/initializing-github-ae
- /admin/configuration/network-ports
- /admin/configuration/restricting-network-traffic-to-your-enterprise
diff --git a/translations/es-ES/content/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md b/translations/es-ES/content/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md
index e0c70ccc85..30cae581e1 100644
--- a/translations/es-ES/content/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md
+++ b/translations/es-ES/content/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md
@@ -74,7 +74,7 @@ To enable single sign-on (SSO) for {% data variables.product.prodname_ghe_manage
{% note %}
-**Note:** To test your SAML configuration from {% data variables.product.prodname_ghe_managed %}, your Okta user account must be assigned to the {% data variables.product.prodname_ghe_managed %} app.
+**Nota:** Para probar tu configuración de SAML desde {% data variables.product.prodname_ghe_managed %}, tu cuenta de usuario de Okta debe asignarse a la app de {% data variables.product.prodname_ghe_managed %}.
{% endnote %}
diff --git a/translations/es-ES/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise-using-okta.md b/translations/es-ES/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise-using-okta.md
index a8e364dacd..3194b51d8b 100644
--- a/translations/es-ES/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise-using-okta.md
+++ b/translations/es-ES/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise-using-okta.md
@@ -16,8 +16,6 @@ type: how_to
shortTitle: Configurar el SAML con Okta
---
-{% data reusables.enterprise-accounts.user-provisioning-release-stage %}
-
{% data reusables.enterprise-accounts.emu-saml-note %}
## Acerca de SAML con Okta
@@ -28,25 +26,20 @@ El SSO de SAML controla y protege el acceso a los recursos de la cuenta empresar
{% data reusables.saml.switching-from-org-to-enterprise %} Para obtener más información, consulta la sección "[Cambiar tu configuración de SAML de una cuenta de organización a una de empresa](/github/setting-up-and-managing-your-enterprise/configuring-identity-and-access-management-for-your-enterprise-account/switching-your-saml-configuration-from-an-organization-to-an-enterprise-account)".
-## Prerrequisitos
-
-{% data reusables.saml.use-classic-ui %}
+Alternatively, you can also configure SAML SSO using Okta for an organization that uses {% data variables.product.prodname_ghe_cloud %}. Para obtener más información, consulta la sección "[Configurar el inicio de sesión único de SAML y SCIM utilizando Okta](/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta)".
## Agregar la aplicación {% data variables.product.prodname_ghe_cloud %} en Okta
-{% data reusables.saml.okta-admin-button %}
+{% data reusables.saml.okta-sign-into-your-account %}
+1. Navigate to the [Github Enterprise Cloud - Enterprise Accounts](https://www.okta.com/integrations/github-enterprise-cloud-enterprise-accounts) application in the Okta Integration Network and click **Add Integration**.
{% data reusables.saml.okta-dashboard-click-applications %}
-{% data reusables.saml.add-okta-application %}
-{% data reusables.saml.search-ghec-okta %}
-1. Da clic en "{% data variables.product.prodname_ghe_cloud %} - Cuentas Empresariales".
-1. Da clic en **Agregar**.
-1. Opcionalmente, a la derecha de la "Etiqueta de aplicación", teclea un nombre descriptivo para la aplicación. 
-1. A la derecha de "Empresas de {% data variables.product.prodname_dotcom %}", teclea el nombre de tu cuenta empresarial. Por ejemplo, si la URL de tu cuenta empresarial es `https://github.com/enterprises/octo-corp`, teclea `octo-corp`. 
+1. Opcionalmente, a la derecha de la "Etiqueta de aplicación", teclea un nombre descriptivo para la aplicación.
+1. A la derecha de "Empresas de {% data variables.product.prodname_dotcom %}", teclea el nombre de tu cuenta empresarial. Por ejemplo, si la URL de tu cuenta empresarial es `https://github.com/enterprises/octo-corp`, teclea `octo-corp`.
1. Haz clic en **Done** (listo).
## Habilitar y probar el SSO de SAML
-{% data reusables.saml.okta-admin-button %}
+{% data reusables.saml.okta-sign-into-your-account %}
{% data reusables.saml.okta-dashboard-click-applications %}
{% data reusables.saml.click-enterprise-account-application %}
{% data reusables.saml.assign-yourself-to-okta %}
@@ -63,14 +56,3 @@ El SSO de SAML controla y protege el acceso a los recursos de la cuenta empresar
1. En Okta, crea un grupo para que empate con la organización que pertenezca a tu cuenta empresarial. El nombre de cada grupo debe coincidir con el nombre de cuenta de la organización (no así, con el nombre mostrado de la misma). Por ejemplo, si la URL de la organización es `https://github.com/octo-org`, nombra `octo-org` al grupo.
1. Asigna la aplicación que creaste para tu cuenta empresarial a cada grupo. {% data variables.product.prodname_dotcom %} recibirá todos los datos de los `groups` para cada usuario.
1. Agrega usuarios a los grupos basándote en las organizaciones a las cuales quisieras que pertenezcan dichos usuarios.
-
-## Habilitar SAML utilizando el aprovisionamiento
-
-{% data reusables.enterprise-accounts.access-enterprise %}
-{% data reusables.enterprise-accounts.settings-tab %}
-{% data reusables.enterprise-accounts.security-tab %}
-1. Debajo de "Aprovisionamiento de Usuarios de SAML", selecciona **Habilitar el aprovisionamiento de usuarios de SAML**. 
-1. Haz clic en **Save ** (guardar).
-1. Opcionalmente, habilita el desaprovisionamiento de usuarios de SAML.
- - Selecciona **Habilitar el resaprovisionamiento de usuarios de SAML**, y luego da clic en **Guardar**. 
- - Lee la advertencia y da clic en **Habilitar el desaprovisionamiento de SAML**. 
diff --git a/translations/es-ES/content/admin/identity-and-access-management/managing-iam-with-enterprise-managed-users/about-enterprise-managed-users.md b/translations/es-ES/content/admin/identity-and-access-management/managing-iam-with-enterprise-managed-users/about-enterprise-managed-users.md
index 772c8fd545..26a859ed0e 100644
--- a/translations/es-ES/content/admin/identity-and-access-management/managing-iam-with-enterprise-managed-users/about-enterprise-managed-users.md
+++ b/translations/es-ES/content/admin/identity-and-access-management/managing-iam-with-enterprise-managed-users/about-enterprise-managed-users.md
@@ -23,7 +23,7 @@ Con {% data variables.product.prodname_emus %}, puedes controlar las cuentas de
En tu IdP, puedes dar a cada {% data variables.product.prodname_managed_user %} el rol de usuario, propietario de la empresa o gerente de facturación. {% data variables.product.prodname_managed_users_caps %} puede ser propietario de organizaciones dentro de tu empresa y puede agregar a otros {% data variables.product.prodname_managed_users %} a las organizaciones y equipos dentro de ella. Para obtener más información, consulta las secciones "[Roles en una empresa](/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise/roles-in-an-enterprise)" y "[Acerca de las organizaciones](/organizations/collaborating-with-groups-in-organizations/about-organizations)".
-Organization membership can be managed manually or updated automatically as {% data variables.product.prodname_managed_users %} are added to IdP groups that are connected to teams within the organization. When a {% data variables.product.prodname_managed_user %} is manually added to an organization, unassigning them from the {% data variables.product.prodname_emu_idp_application %} application on your IdP will suspend the user but not remove them from the organization. For more information about managing organization and team membership automatically, see "[Managing team memberships with identity provider groups](/github/setting-up-and-managing-your-enterprise/managing-your-enterprise-users-with-your-identity-provider/managing-team-memberships-with-identity-provider-groups)."
+Organization membership can be managed manually or updated automatically as {% data variables.product.prodname_managed_users %} are added to IdP groups that are connected to teams within the organization. Cuando se agrega un {% data variables.product.prodname_managed_user %} manualmente a una organización, el desasignarlo de la aplicación de {% data variables.product.prodname_emu_idp_application %} en tu IdP suspenderá al usuario pero no lo eliminará de la organización. Para obtener más información sobre cómo administrar las membrecías de equipo y de organización automáticamente, consulta la sección "[Administrar las membrecías de equipo con los grupos de proveedor de identidad](/github/setting-up-and-managing-your-enterprise/managing-your-enterprise-users-with-your-identity-provider/managing-team-memberships-with-identity-provider-groups)".
Puedes otorgar acceso a los {% data variables.product.prodname_managed_users %}, así como la habilidad de contribuir con los repositorios dentro de tu empresa, pero los {% data variables.product.prodname_managed_users %} no pueden crear contenido público ni colaborar con otros usuarios, organizaciones y empresas en el resto de {% data variables.product.prodname_dotcom %}. No se puede invitar a los {% data variables.product.prodname_managed_users %} que se aprovisionaron para tu empresa para que se unan a organizaciones o repositorios fuera de esta, ni se puede invitar a los {% data variables.product.prodname_managed_users %} a otras empresas. Los colaboradores externos no son compatibles con los {% data variables.product.prodname_emus %}.
diff --git a/translations/es-ES/content/admin/index.md b/translations/es-ES/content/admin/index.md
index 95226a0cc2..cdef92694f 100644
--- a/translations/es-ES/content/admin/index.md
+++ b/translations/es-ES/content/admin/index.md
@@ -104,6 +104,14 @@ featuredLinks:
- '{% ifversion ghec %}/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks{% endif %}'
- '{% ifversion ghec %}/billing/managing-your-license-for-github-enterprise/using-visual-studio-subscription-with-github-enterprise/setting-up-visual-studio-subscription-with-github-enterprise{% endif %}'
- /admin/enterprise-support/about-github-enterprise-support
+ videos:
+ - title: GitHub in the Enterprise – Maya Ross
+ href: 'https://www.youtube-nocookie.com/embed/1-i39RqaxRs'
+ - title: What's new for GitHub Enterprise – Jarryd McCree
+ href: 'https://www.youtube-nocookie.com/embed/ZZviWZgrqhM'
+ - title: Enforcing information security policy through GitHub Enterprise – Thomas Worley
+ href: 'https://www.youtube-nocookie.com/embed/DCu-ZTT7WTI'
+ videosHeading: GitHub Universe 2021 videos
layout: product-landing
versions:
ghec: '*'
diff --git a/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md b/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md
index ee05d35cc0..b081b85763 100644
--- a/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md
+++ b/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md
@@ -1,6 +1,6 @@
---
-title: Enforcing policies for dependency insights in your enterprise
-intro: 'You can enforce policies for dependency insights within your enterprise''s organizations, or allow policies to be set in each organization.'
+title: Requerir políticas para las perspectivas de dependencias en tu empresa
+intro: Puedes requerir políticas para las perspectivas de dependencias dentro de las organizaciones de tu empresa o permitir que estas se requieran en tu organización.
permissions: Enterprise owners can enforce policies for dependency insights in an enterprise.
redirect_from:
- /articles/enforcing-a-policy-on-dependency-insights
@@ -16,19 +16,19 @@ topics:
- Enterprise
- Organizations
- Policies
-shortTitle: Policies for dependency insights
+shortTitle: Políticas para las perspectivas de las dependencias
---
-## About policies for dependency insights in your enterprise
+## Acerca de las políticas para las perspectivas de dependencias en tu empresa
-Dependency insights show all packages that repositories within your enterprise's organizations depend on. Dependency insights include aggregated information about security advisories and licenses. Para obtener más información, consulta "[Ver información de tu organización](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)".
+Las perspectivas de dependencias muestran todos los paquetes de los cuales dependen los repositorios dentro de las organizaciones de tu empresa. Las perspectivas de dependencias incluyen información agregada sobre las licencias y asesorías de seguridad. Para obtener más información, consulta "[Ver información de tu organización](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)".
-## Enforcing a policy for visibility of dependency insights
+## Requerir una política para la visibilidad de las perspectivas de dependencias
-Across all organizations owned by your enterprise, you can control whether organization members can view dependency insights. You can also allow owners to administer the setting on the organization level. Para obtener más información, consulta "[Cambiar la visibilidad de la información de dependencias de la organización](/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights)".
+A lo largo de todas las organizaciones que pertenezcan a tu empresa, puedes controlar si los miembros de dichas organizaciones pueden ver las perspectivas de dependencias. También puedes permitir que los propietarios administren la configuración a nivel organizacional. Para obtener más información, consulta "[Cambiar la visibilidad de la información de dependencias de la organización](/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights)".
{% data reusables.enterprise-accounts.access-enterprise %}
{% data reusables.enterprise-accounts.policies-tab %}
-3. In the left sidebar, click **Organizations**. 
+3. En la barra lateral izquierda, haz clic en **Organizaciones**. 
4. En "Políticas de la organización", revisa la información sobre cómo modificar los parámetros. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %}
5. En "Políticas de la organización", usa el menú desplegable y elige una política. 
diff --git a/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise.md b/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise.md
index 269facebc1..032d232fc2 100644
--- a/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise.md
+++ b/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise.md
@@ -1,6 +1,6 @@
---
-title: Enforcing policies for GitHub Actions in your enterprise
-intro: 'You can enforce policies for {% data variables.product.prodname_actions %} within your enterprise''s organizations, or allow policies to be set in each organization.'
+title: Requerir políticas para las GitHub Actions en tu empresa
+intro: 'Puedes requerir políticas para las {% data variables.product.prodname_actions %} dentro de las organizaciones de tu empresa o permitir que estas se configuren en cada organización.'
permissions: 'Enterprise owners can enforce policies for {% data variables.product.prodname_actions %} in an enterprise.'
miniTocMaxHeadingLevel: 3
redirect_from:
@@ -22,18 +22,18 @@ topics:
- Actions
- Enterprise
- Policies
-shortTitle: GitHub Actions policies
+shortTitle: Políticas de GitHub Actions
---
{% data reusables.actions.enterprise-beta %}
-## About policies for {% data variables.product.prodname_actions %} in your enterprise
+## Acerca de las políticas para {% data variables.product.prodname_actions %} en tu empresa
-{% data variables.product.prodname_actions %} helps members of your enterprise automate software development workflows on {% data variables.product.product_name %}. Para obtener más información, consulta la sección "[Entender las {% data variables.product.prodname_actions %}](/actions/learn-github-actions/understanding-github-actions)".
+Las {% data variables.product.prodname_actions %} ayudan a los miembros de tu empresa a automatizar los flujos de trabajo de desarrollo de software en {% data variables.product.product_name %}. Para obtener más información, consulta la sección "[Entender las {% data variables.product.prodname_actions %}](/actions/learn-github-actions/understanding-github-actions)".
-{% ifversion ghes %}If you enable {% data variables.product.prodname_actions %}, any{% else %}Any{% endif %} organization on {% data variables.product.product_location %} can use {% data variables.product.prodname_actions %}. You can enforce policies to control how members of your enterprise on {% data variables.product.product_name %} use {% data variables.product.prodname_actions %}. By default, organization owners can manage how members use {% data variables.product.prodname_actions %}. For more information, see "[Disabling or limiting {% data variables.product.prodname_actions %} for your organization](/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization)."
+{% ifversion ghes %}Si habilitas las {% data variables.product.prodname_actions %}, cualquier{% else %}Cualquier{% endif %} organización en {% data variables.product.product_location %} podrá utilizar {% data variables.product.prodname_actions %}. Puedes requerir políticas para controlar la forma en la que los miembros de tu empresa de {% data variables.product.product_name %} utilizan las {% data variables.product.prodname_actions %}. Predeterminadamente, los propietarios de las organizaciones pueden administrar la forma en la que los miembros utilizan las {% data variables.product.prodname_actions %}. Para obtener más información, consulta la sección "[Inhabilitar o limitar las {% data variables.product.prodname_actions %} para tu organización](/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization)".
-## Enforcing a policy to restrict the use of actions in your enterprise
+## Requerir una política para restringir el uso de las acciones en tu empresa
Puedes elegir inhabilitar {% data variables.product.prodname_actions %} para todas las organizaciones en tu empresa, o puedes permitir solo organizaciones específicas. También puedes limitar el uso de acciones públicas para que las personas solo puedan utilizar las acciones locales que existen en tu empresa.
@@ -45,7 +45,7 @@ Puedes elegir inhabilitar {% data variables.product.prodname_actions %} para tod
{% ifversion ghec or ghes or ghae %}
-### Allowing select actions to run
+### Permitir que se ejecuten acciones específicas
{% data reusables.actions.allow-specific-actions-intro %}
@@ -62,9 +62,9 @@ Puedes elegir inhabilitar {% data variables.product.prodname_actions %} para tod
{% ifversion ghec or ghes or ghae %}
-## Enforcing a policy for artifact and log retention in your enterprise
+## Requerir una política para la retención de bitácoras y artefactos en tu empresa
-{% data variables.product.prodname_actions %} can store artifact and log files. Para obtener más información, consulta la sección "[Descargar artefactos de los flujos de trabajo ](/actions/managing-workflow-runs/downloading-workflow-artifacts)".
+Las {% data variables.product.prodname_actions %} pueden restablecer los archivos de bitácora y artefactos. Para obtener más información, consulta la sección "[Descargar artefactos de los flujos de trabajo ](/actions/managing-workflow-runs/downloading-workflow-artifacts)".
{% data reusables.actions.about-artifact-log-retention %}
@@ -75,13 +75,13 @@ Puedes elegir inhabilitar {% data variables.product.prodname_actions %} para tod
{% endif %}
-## Enforcing a policy for fork pull requests in your enterprise
+## Requerir una política para bifurcar solicitudes de cambio en tu empresa
-You can enforce policies to control how {% data variables.product.prodname_actions %} behaves for {% data variables.product.product_location %} when members of your enterprise{% ifversion ghec %} or outside collaborators{% endif %} run workflows from forks.
+Puedes requerir políticas para controlar la forma en la que se comportan las {% data variables.product.prodname_actions %} en {% data variables.product.product_location %} cuando los miembros de tu empresa{% ifversion ghec %} o colaboradores externos{% endif %} ejecutan flujos de trabajo desde las bifurcaciones.
{% ifversion ghec %}
-### Enforcing a policy for approval of pull requests from outside collaborators
+### Requerir una política para la aprobación de las solicitudes de cambio desde los colaboradores externos
{% data reusables.actions.workflow-run-approve-public-fork %}
@@ -96,7 +96,7 @@ You can enforce policies to control how {% data variables.product.prodname_actio
{% ifversion ghec or ghes or ghae %}
-### Enforcing a policy for fork pull requests in private repositories
+### Requerir una política para bifurcar solicitudes de cambio en repositorios privados
{% data reusables.github-actions.private-repository-forks-overview %}
@@ -109,7 +109,7 @@ You can enforce policies to control how {% data variables.product.prodname_actio
{% ifversion ghec or ghes > 3.1 or ghae %}
-## Enforcing a policy for workflow permissions in your enterprise
+## Requerir una política para los permisos de flujo de trabajo en tu empresa
{% data reusables.github-actions.workflow-permissions-intro %}
diff --git a/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md b/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md
index c14fc0b4a5..573fec2d95 100644
--- a/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md
+++ b/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md
@@ -1,6 +1,6 @@
---
-title: Enforcing project board policies in your enterprise
-intro: 'You can enforce policies for projects within your enterprise''s organizations, or allow policies to be set in each organization.'
+title: Requerir políticas de tableros de proyecto en tu empresa
+intro: Puedes requerir políticas para los proyectos dentro de las organizaciones de tu empresa o permitir que se configuren políticas en cada organización.
permissions: Enterprise owners can enforce policies for project boards in an enterprise.
redirect_from:
- /articles/enforcing-project-board-settings-for-organizations-in-your-business-account
@@ -18,12 +18,12 @@ topics:
- Enterprise
- Policies
- Projects
-shortTitle: Project board policies
+shortTitle: Políticas del tablero de proyectos
---
-## About policies for project boards in your enterprise
+## Acerca de las políticas para los tableros de proyecto en tu empresa
-You can enforce policies to control how members of your enterprise on {% data variables.product.product_name %} manage project boards. You can also allow organization owners to manage policies for project boards. Para obtener más información, consulta "[Acerca de los tableros de proyectos](/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards)."
+Puedes requerir políticas para controlar la forma en la que los miembros de tu empresa de {% data variables.product.product_name %} administran los tableros de proyecto. También puedes permitir que los propietarios de la organización administren las políticas para los tableros de proyecto. Para obtener más información, consulta "[Acerca de los tableros de proyectos](/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards)."
## Hacer cumplir una política para tableros de proyecto en toda la organización
diff --git a/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md b/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md
index 18381361ee..938e8a5e81 100644
--- a/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md
+++ b/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md
@@ -1,6 +1,6 @@
---
-title: Enforcing team policies in your enterprise
-intro: 'You can enforce policies for teams in your enterprise''s organizations, or allow policies to be set in each organization.'
+title: Requerir políticas de equipo en tu empresa
+intro: Puedes requerir políticas para los equipos en las organizaciones de tu empresa o permitir que se configuren en cada organización.
permissions: Enterprise owners can enforce policies for teams in an enterprise.
redirect_from:
- /articles/enforcing-team-settings-for-organizations-in-your-business-account
@@ -18,19 +18,19 @@ topics:
- Enterprise
- Policies
- Teams
-shortTitle: Team policies
+shortTitle: Políticas de equipo
---
-## About policies for teams in your enterprise
+## Acerca de las políticas para los equipos de tu empresa
-You can enforce policies to control how members of your enterprise on {% data variables.product.product_name %} manage teams. You can also allow organization owners to manage policies for teams. Para obtener más información, consulta la sección "[Acerca de los equipos](/organizations/organizing-members-into-teams/about-teams)".
+Puedes requerir políticas para controlar la forma en la que los miembros de tu empresa de {% data variables.product.product_name %} administran a los equipos. También puedes permitir que los propietarios de las organizaciones administren políticas para los equipos. Para obtener más información, consulta la sección "[Acerca de los equipos](/organizations/organizing-members-into-teams/about-teams)".
## Hacer cumplir una política para los debates de equipo
-Across all organizations owned by your enterprise, you can enable or disable team discussions, or allow owners to administer the setting on the organization level. Para obtener más información, consulta [Acerca de los debates del equipo](/organizations/collaborating-with-your-team/about-team-discussions/)".
+En todas las organizaciones que le pertenezcan a tu empresa, puedes habilitar o inhabilitar los debates de equipo o permitir que los propietarios administren el ajuste a nivel organizacional. Para obtener más información, consulta [Acerca de los debates del equipo](/organizations/collaborating-with-your-team/about-team-discussions/)".
{% data reusables.enterprise-accounts.access-enterprise %}
{% data reusables.enterprise-accounts.policies-tab %}
-3. En la barra lateral izquierda, haz clic en **Teams (Equipos)**. 
+3. En la barra lateral izquierda, haz clic en **Teams (Equipos)**. 
4. En "Debates de equipo", revisa la información sobre cómo modificar los parámetros. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %}
5. En "Debates de equipo", usa el menú desplegable y elige una política. 
diff --git a/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise.md b/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise.md
index 2ab321db12..437374e8e5 100644
--- a/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise.md
+++ b/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise.md
@@ -50,7 +50,7 @@ Enterprise owners can invite existing organizations to join their enterprise acc
3. Under "Organization name", start typing the name of the organization you want to invite and select it when it appears in the drop-down list.

4. Click **Invite organization**.
-5. The organization owners will receive an email inviting them to join the organization. At least one owner needs to accept the invitation before the process can continue. You can cancel or resend the invitation at any time before an owner approves it.
+5. The organization owners will receive an email inviting them to join the enterprise. At least one owner needs to accept the invitation before the process can continue. You can cancel or resend the invitation at any time before an owner approves it.

6. Once an organization owner has approved the invitation, you can view its status in the list of pending invitations.

diff --git a/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/managing-unowned-organizations-in-your-enterprise.md b/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/managing-unowned-organizations-in-your-enterprise.md
index 4db54204c2..c2b4c2d1f0 100644
--- a/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/managing-unowned-organizations-in-your-enterprise.md
+++ b/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/managing-unowned-organizations-in-your-enterprise.md
@@ -1,5 +1,5 @@
---
-title: Managing unowned organizations in your enterprise
+title: Administrar las organizaciones que no te pertenecen en tu empresa
intro: Puedes convertirte en propietario de una organización en tu cuenta empresarial si ésta no tiene propietarios actualmente.
permissions: Enterprise owners can manage unowned organizations in an enterprise account.
redirect_from:
diff --git a/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/streaming-the-audit-logs-for-organizations-in-your-enterprise-account.md b/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/streaming-the-audit-logs-for-organizations-in-your-enterprise-account.md
index 6990b4e7dc..89fbf119a4 100644
--- a/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/streaming-the-audit-logs-for-organizations-in-your-enterprise-account.md
+++ b/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/streaming-the-audit-logs-for-organizations-in-your-enterprise-account.md
@@ -1,6 +1,6 @@
---
title: Transmitir las bitácoras de auditoría para las organizaciones de tu cuenta empresarial
-intro: 'You can stream audit and Git events data from {% data variables.product.prodname_dotcom %} to an external data management system.'
+intro: 'Puedes trasmitir datos de eventos de Git y de auditorías desde {% data variables.product.prodname_dotcom %} hacia un sistema externo de administración de datos.'
miniTocMaxHeadingLevel: 3
versions:
ghec: '*'
@@ -16,12 +16,6 @@ redirect_from:
permissions: Enterprise owners can configure audit log streaming.
---
-{% note %}
-
-**Nota:** La transmisión de bitácoras de auditoría se encuentra actualmente en beta para {% data variables.product.prodname_ghe_cloud %} y está sujeta a cambios.
-
-{% endnote %}
-
## Acerca de exportar los datos de auditoría
Puedes extraer datos de bitácoras de auditoría y de eventos de git desde {% data variables.product.prodname_dotcom %} en varias formas:
@@ -30,8 +24,9 @@ Puedes extraer datos de bitácoras de auditoría y de eventos de git desde {% da
* Utiliza la API para encuestar por eventos nuevos de bitácoras de auditoría. Para obtener más información, consulta la sección "[Utilizar la API de bitácoras de auditoría](/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization#using-the-audit-log-api)".
* Configurar {% data variables.product.product_name %} para transmitir datos de auditoría mientras se registran los eventos.
-Currently, audit log streaming is supported for multiple storage providers.
+Actualmente, la transmisión de bitácoras de auditoría es compatible con varios proveedores de almacenamiento.
- Amazon S3
+- Almacenamiento de Blobs de Azure
- Azure Event Hubs
- Google Cloud Storage
- Splunk
@@ -51,31 +46,82 @@ Los propietrios de empresas pueden configurar, pausar o borrar una transmisión
## Configurar la transmisión de bitácoras de auditoría
-You set up the audit log stream on {% data variables.product.product_name %} by following the instructions for your provider.
+Puedes configurar la transmisión de bitácoras de auditoría en {% data variables.product.product_name %} si sigues las instrucciones para tu proveedor.
- [Amazon S3](#setting-up-streaming-to-amazon-s3)
-- [Azure Event Hubs](#setting-up-streaming-to-splunk)
+- [Almacenamiento de Blobs de Azure](#setting-up-streaming-to-azure-blob-storage)
+- [Azure Event Hubs](#setting-up-streaming-to-azure-event-hubs)
- [Google Cloud Storage](#setting-up-streaming-to-google-cloud-storage)
- [Splunk](#setting-up-streaming-to-splunk)
-### Setting up streaming to Amazon S3
+### Configurar la transmisión para Amazon S3
-To stream audit logs to Amazon's S3 endpoint, you must have a bucket and access keys. For more information, see [Creating, configuring, and working with Amazon S3 buckets](https://docs.aws.amazon.com/AmazonS3/latest/userguide/creating-buckets-s3.html) in the the AWS documentation. Make sure to block public access to the bucket to protect your audit log information.
+Para transmitir bitácoras de auditoría a la terminal de Amazon S3, debes tener un bucket y llaves de acceso. Para obtener más información, consulta la sección [Crear, configurar y trabajar con los buckets de Amazon S3](https://docs.aws.amazon.com/AmazonS3/latest/userguide/creating-buckets-s3.html) en la documentación de AWS. Asegúrate de bloquear el acceso público al bucket para proteger la información de tu bitácora de auditoría.
-To set up audit log streaming from {% data variables.product.prodname_dotcom %} you will need:
-* The name of your Amazon S3 bucket
-* Your AWS access key ID
-* Your AWS secret key
+Para configurar la transmisión de bitácora de auditoría desde {% data variables.product.prodname_dotcom %}, necesitarás:
+* El nombrede tu bucket de Amazon S3
+* Tu ID de llave de acceso de AWS
+* Tu llave de secreto de AWS
-For information on creating or accessing your access key ID and secret key, see [Understanding and getting your AWS credentials](https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html) in the AWS documentation.
+Para obtener más información sobre cómo crear o acceder a tu ID de llave de acceso y llave de secreto, consulta la sección [Entender y obtener tus credenciales de AWS](https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html) en la documentación de AWS.
{% data reusables.enterprise.navigate-to-log-streaming-tab %}
-1. Click **Configure stream** and select **Amazon S3**. 
+1. Haz clic en **Configurar transmisión** y selecciona **Amazon S3**.
+
+ 
+
1. En la página de configuración, ingresa:
- * The name of the bucket you want to stream to. For example, `auditlog-streaming-test`.
- * Your access key ID. For example, `ABCAIOSFODNN7EXAMPLE1`.
- * Your secret key. For example, `aBcJalrXUtnWXYZ/A1MDENG/zPxRfiCYEXAMPLEKEY`. 
-1. Click **Check endpoint** to verify that {% data variables.product.prodname_dotcom %} can connect to the Amazon S3 endpoint. 
+ * El nombre del bucket al cual quieres transmitir. Por ejemplo, `auditlog-streaming-test`.
+ * Tu ID de llave de acceso. Por ejemplo, `ABCAIOSFODNN7EXAMPLE1`.
+ * Tu llave secreta. Por ejemplo, `aBcJalrXUtnWXYZ/A1MDENG/zPxRfiCYEXAMPLEKEY`.
+
+ 
+
+1. Haz clic en **Verificar terminal** para verificar que {% data variables.product.prodname_dotcom %} pueda conectarse y escribir en la terminal de Amazon S3.
+
+ 
+
+{% data reusables.enterprise.verify-audit-log-streaming-endpoint %}
+
+### Configurar la transmisión hacia Azure Blob Storage
+
+Antes de configurar una transmisión en {% data variables.product.prodname_dotcom %}, primero debes haber creado una cuenta de almacenamiento y un contenedor en Microsoft Azure. Para obtener más detalles, consulta la sección de "[Introducción a Azure Blob Storage](https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blobs-introduction)" em la documentación de Microsoft.
+
+Para configurar la transmisión en {% data variables.product.prodname_dotcom %}, necesitarás la URL de un token SAS.
+
+**En el portal de Microsoft Azure**:
+1. En la página principal, haz clic en **Cuentas de almacenamiento**.
+2. Haz clic en el nombre de la cuenta de almacenamiento que quieras utilizar y luego en **Contenedores**.
+
+ 
+
+1. Haz clic en el nombre del contenedor que quieres utilizar.
+1. Haz clic en **Tokens de acceso compartidos**.
+
+ 
+
+1. En el menú desplegable de **Permisos**, cambia los permisos para solo permitir `Create` y `Write`.
+
+ 
+
+1. Configura una fecha de vencimiento que cumpla con tu política de rotación de secretos.
+1. Haz clic en **Generar un token SAS y URL**.
+1. Copia el valor del campo **Blob SAS URL** que se muestra. Utilizarás esta URL en {% data variables.product.prodname_dotcom %}.
+
+**En {% data variables.product.prodname_dotcom %}**:
+{% data reusables.enterprise.navigate-to-log-streaming-tab %}
+1. Haz clic en **Configurar transmisión** y selecciona **Azure Blob Storage**.
+
+ 
+
+1. En la página de configuración, ingresa la URL de SAS del blob que copiaste en Azure. El campo **Contenedor** se llena automáticamente con base en la URL.
+
+ 
+
+1. Haz clic en **Verificar terminal** para verificar que {% data variables.product.prodname_dotcom %} pueda conectarse a la terminal de Azure Blob Storage.
+
+ 
+
{% data reusables.enterprise.verify-audit-log-streaming-endpoint %}
### Configurar la transmisión hacia Azure Event Hubs
@@ -85,54 +131,78 @@ Antes de configurar una transmisión en {% data variables.product.prodname_dotco
Necesitas dos partes de información sobre tu concentrador de eventos: su nombre de instancia y la secuencia de conexión.
**En el portal de Microsoft Azure**:
-1. En el menú de la izquierda, selecciona **Entidades**. Posteriormente, selecciona **Concentradores de Eventos**. Se listarán los nombres de tus concentradores de eventos. 
+1. Busca "Event Hubs".
+
+ 
+
+1. Selecciona **Event Hubs**. Se listarán los nombres de tus concentradores de eventos.
+
+ 
+
1. Haz una nota del nombre del concentrador de eventos al cual quieras transmitir.
1. Haz clic en el concentrador de eventos requerido. Posteriormente, en el menú de la izquierda, selecciona **Políticas de Acceso Compartido**.
-1. Selecciona las políticas de acceso compartido de la lista de políticas o crea una nueva. 
-1. Haz clic en el botón a la derecha del campo **Secuencia de conexión-llave primaria** para copiar la secuencia de conexión. 
+1. Selecciona las políticas de acceso compartido de la lista de políticas o crea una nueva.
+
+ 
+
+1. Haz clic en el botón a la derecha del campo **Secuencia de conexión-llave primaria** para copiar la secuencia de conexión.
+
+ 
**En {% data variables.product.prodname_dotcom %}**:
{% data reusables.enterprise.navigate-to-log-streaming-tab %}
-1. Haz clic en **Configurar transmisión** y selecciona **Azure Event Hubs**. 
+1. Haz clic en **Configurar transmisión** y selecciona **Azure Event Hubs**.
+
+ 
+
1. En la página de configuración, ingresa:
* El nombre de la instancia de Azure Event Hubs.
- * La secuencia de conexión. 
-1. Haz clic en **Verificar terminal** para verificar que {% data variables.product.prodname_dotcom %} puede conectarse a la terminal de Azure. 
+ * La secuencia de conexión.
+
+ 
+
+1. Haz clic en **Verificar terminal** para verificar que {% data variables.product.prodname_dotcom %} puede conectarse y escribir en la terminal de Azure Events Hub.
+
+ 
+
{% data reusables.enterprise.verify-audit-log-streaming-endpoint %}
-### Setting up streaming to Google Cloud Storage
+### Configurar la transmisión para Google Cloud Storage
Para configurar la transmisión al Almacenamiento de Google Cloud, debes crear una cuenta de servicio en Google Cloud con las credenciales y permisos adecuados y luego configurar la transmisión de bitácoras de auditoría en {% data variables.product.product_name %} utilizando las credenciales de la cuenta de servicio para la autenticación.
-1. Create a service account for Google Cloud. You do not need to set access controls or IAM roles for the service account. For more information, see [Creating and managing service accounts](https://cloud.google.com/iam/docs/creating-managing-service-accounts#creating) in the Google Cloud documentation.
-1. Create a JSON key for the service account, and store the key securely. For more information, see [Creating and managing service account keys](https://cloud.google.com/iam/docs/creating-managing-service-account-keys#creating) in the Google Cloud documentation.
-1. If you haven't created a bucket yet, create the bucket. For more information, see [Creating storage buckets](https://cloud.google.com/storage/docs/creating-buckets) in the Google Cloud documentation.
-1. Give the service account the Storage Object Creator role for the bucket. For more information, see [Using Cloud IAM permissions](https://cloud.google.com/storage/docs/access-control/using-iam-permissions#bucket-add) in the Google Cloud documentation.
+1. Crea una cuenta de servicio de Google Cloud. No necesitas configurar controles de acceso o roles de IAM para la cuenta de servicio. Para obtener más información, consulta la sección [Crear y administrar cuentas de servicio](https://cloud.google.com/iam/docs/creating-managing-service-accounts#creating) en la documentación de Google Cloud.
+1. Crear una llave de JSON para la cuenta de servicio y almacenarla de forma segura. Para obtener más información, consulta la sección [Crear y administrar llaves de cuenta de servicio](https://cloud.google.com/iam/docs/creating-managing-service-account-keys#creating) en la documentación de Google Cloud.
+1. Si aún no has creado un bucket, házlo ahora. Para obtener más información, consulta la sección [Crear buckets de almacenamiento](https://cloud.google.com/storage/docs/creating-buckets) en la documentación de Google Cloud.
+1. Dale a la cuenta de servicio el el rol de Credor de Objetos de Almacenamiento para el bucket. Para obtener más información, consulta la sección [Utilizar los permisos de Cloud IAM](https://cloud.google.com/storage/docs/access-control/using-iam-permissions#bucket-add) en la documentación de Google Cloud.
{% data reusables.enterprise.navigate-to-log-streaming-tab %}
-1. Select the Configure stream drop-down menu and click **Google Cloud Storage**.
+1. Selecciona el menú desplegable de configurar transmisión y haz clic en **Google Cloud Storage**.
- 
+ 
-1. Under "Bucket", type the name of your Google Cloud Storage bucket.
+1. Debajo de "Bucket", teclea el nombre de tu bucket de Google Cloud Storage.
- 
+ 
-1. Under "JSON Credentials", paste the entire contents of the file for your service account's JSON key.
+1. Debajo de "Credenciales de JSON", pega todo el contenido del archivo para tu llave JSON de la cuenta de servicio.
- 
+ 
-1. To verify that {% data variables.product.prodname_dotcom %} can connect and write to the Google Cloud Storage bucket, click **Check endpoint**.
+1. Para verificar que {% data variables.product.prodname_dotcom %} pueda conectarse y escribir en el bucket de Google Cloud Storage, haz clic en **Verificar terminal**.
- 
+ 
{% data reusables.enterprise.verify-audit-log-streaming-endpoint %}
### Configurar la transmisión a Splunk
-Para transmitir bitácoras de auditoría a la terminal del Recolector de Eventos HTTP (HEC) de Splunk, debes asegurarte de que la terminal se configure para aceptar conexiones HTTPS. For more information, see [Set up and use HTTP Event Collector in Splunk Web](https://docs.splunk.com/Documentation/Splunk/latest/Data/UsetheHTTPEventCollector) in the Splunk documentation.
+Para transmitir bitácoras de auditoría a la terminal del Recolector de Eventos HTTP (HEC) de Splunk, debes asegurarte de que la terminal se configure para aceptar conexiones HTTPS. Para obtener más información, consulta la sección [Configurar y utilizar el Recolector de Eventos HTTP en Splunk Web](https://docs.splunk.com/Documentation/Splunk/latest/Data/UsetheHTTPEventCollector) en la documentación de Splunk.
{% data reusables.enterprise.navigate-to-log-streaming-tab %}
-1. Haz clic en **Configurar transmisión** y selecciona **Splunk**. 
+1. Haz clic en **Configurar transmisión** y selecciona **Splunk**.
+
+ 
+
1. En la página de configuración, ingresa:
* El dominio en el cual se hospeda la aplicación que quieres transmitir.
@@ -142,12 +212,14 @@ Para transmitir bitácoras de auditoría a la terminal del Recolector de Eventos
Si estás utilizando Splunk Cloud, `Port` debería ser `443` si no has cambiado la configuración del puerto. Si estás utilizando la versión de prueba gratis de Splunk Cloud, `Port` debe ser `8088`.
- * Un token que pueda utilizar {% data variables.product.prodname_dotcom %} para autenticarse a la aplicación de terceros. 
+ * Un token que pueda utilizar {% data variables.product.prodname_dotcom %} para autenticarse a la aplicación de terceros.
+
+ 
1. Deja seleccionada la casilla de **Habilitar la verificación por SSL**.
Las bitácoras de auditoría siempre se transmiten como datos cifrados, sin embargo, si seleccionas esta opción, {% data variables.product.prodname_dotcom %} verificará el certificado SSL de tu instancia de Splunk cuando entregue eventos. La verificación por SSL te ayuda a garantizar que los eventos se entreguen a tu terminal URL con seguridad. Puedes limpiar la selección de esta opción, pero te recomendamos que dejes habilitada la verificación por SSL.
-1. Haz clic en **Verificar terminal** para verificar que {% data variables.product.prodname_dotcom %} puede conectarse a la terminal de Splunk. 
+1. Haz clic en **Verificar terminal** para verificar que {% data variables.product.prodname_dotcom %} puede conectarse y escribir en la terminal de Splunk. 
{% data reusables.enterprise.verify-audit-log-streaming-endpoint %}
## Pausar la transmisión de bitácoras de auditoría
@@ -155,7 +227,10 @@ Para transmitir bitácoras de auditoría a la terminal del Recolector de Eventos
El pausar la transmisión te permite realizar el mantenimiento de la aplicación receptora sin perder datos de auditoría. Las bitácoras de auditoría se almacenan por hasta siete días en {% data variables.product.product_location %} y luego se exportan cuando dejas de pausar la transmisión.
{% data reusables.enterprise.navigate-to-log-streaming-tab %}
-1. Haz clic en **Pausar transmisión**. 
+1. Haz clic en **Pausar transmisión**.
+
+ 
+
1. Se mostrará un mensaje de confirmación. Haz clic en **Pausar transmisión** para confirmar.
Cuando la aplicación esté lista para recibir bitácoras de auditoría nuevamente, haz clic en **Reanudar transmisión** para reiniciar la transmisión de bitácoras de auditoría.
@@ -163,5 +238,8 @@ Cuando la aplicación esté lista para recibir bitácoras de auditoría nuevamen
## Borrar la transmisión de bitácoras de auditoría
{% data reusables.enterprise.navigate-to-log-streaming-tab %}
-1. Haz clic en **Borrar transmisión**. 
-2. Se mostrará un mensaje de confirmación. Haz clic en **Borrar transmisión** para confirmar.
+1. Haz clic en **Borrar transmisión**.
+
+ 
+
+1. Se mostrará un mensaje de confirmación. Haz clic en **Borrar transmisión** para confirmar.
diff --git a/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md b/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md
index 6810336740..f68715a2a6 100644
--- a/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md
+++ b/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md
@@ -1,5 +1,5 @@
---
-title: Viewing the audit logs for organizations in your enterprise
+title: Ver las bitácoras de auditoría para las organizaciones de tu empresa
intro: Los propietarios de la empresa pueden ver accciones acumuladas de todas las organizaciones propiedad de una cuenta de empresa en su registro de auditoría.
redirect_from:
- /github/setting-up-and-managing-your-enterprise/managing-organizations-in-your-enterprise-account/viewing-the-audit-logs-for-organizations-in-your-enterprise-account
@@ -29,7 +29,7 @@ Cada entrada del registro de auditoría muestra información vigente acerca de u
Puedes buscar el registro de auditoría para eventos específicos y exportar los datos del registro de auditoría. Para obtener más información acerca de buscar el registro de auditoría y eventos en una organización específica, consulta "[Revisar el registro de auditoría para tu organización](/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization)."
-You can also stream audit and Git events data from {% data variables.product.prodname_dotcom %} to an external data management system. Para obtener más información, consulta la sección "[Transmitir las bitácoras de auditoría para las organizaciones de tu cuenta empresarial](/admin/user-management/managing-organizations-in-your-enterprise/streaming-the-audit-logs-for-organizations-in-your-enterprise-account)".
+También puedes transmitir datos de eventos de Git y de auditorías desde {% data variables.product.prodname_dotcom %} hacia un sistema externo de administración de datos. Para obtener más información, consulta la sección "[Transmitir las bitácoras de auditoría para las organizaciones de tu cuenta empresarial](/admin/user-management/managing-organizations-in-your-enterprise/streaming-the-audit-logs-for-organizations-in-your-enterprise-account)".
{% data reusables.enterprise-accounts.access-enterprise %}
{% data reusables.enterprise-accounts.settings-tab %}
diff --git a/translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/impersonating-a-user.md b/translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/impersonating-a-user.md
index 1b0c75156e..3a83b4afe5 100644
--- a/translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/impersonating-a-user.md
+++ b/translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/impersonating-a-user.md
@@ -4,6 +4,7 @@ intro: 'You can impersonate users and perform actions on their behalf, for troub
permissions: 'Enterprise owners can impersonate users within their enterprise.'
versions:
ghes: '>3.2'
+ ghae: '*'
type: how_to
topics:
- Administrator
diff --git a/translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md b/translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md
index 04274bc805..a5b3e3cfac 100644
--- a/translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md
+++ b/translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md
@@ -43,7 +43,7 @@ Si tu empresa utiliza {% data variables.product.prodname_emus %}, solo se pueden
## {% ifversion ghec %}Invitar{% elsif ghes %}Agregar{% endif %} a un administrador empresarial a tu cuenta empresarial
-{% ifversion ghec %}Después de que invites a alguien para que se una a la cuenta empresarial, esta persona debe aceptar la invitación que le llegó por correo electrónico antes de que pueda acceder a la cuenta empresarial. Pending invitations will expire after 7 days.{% endif %}
+{% ifversion ghec %}Después de que invites a alguien para que se una a la cuenta empresarial, esta persona debe aceptar la invitación que le llegó por correo electrónico antes de que pueda acceder a la cuenta empresarial. Las invitaciones pendientes vencerán después de 7 días.{% endif %}
{% data reusables.enterprise-accounts.access-enterprise %}
{% data reusables.enterprise-accounts.people-tab %}
diff --git a/translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md b/translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md
index eda630ca0f..6c267c8818 100644
--- a/translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md
+++ b/translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md
@@ -41,7 +41,7 @@ Los propietarios de las empresas tienen el control absoluto de las mismas y pued
Los propietarios de empresa no pueden acceder a los parámetros o el contenido de la organización, a menos que se conviertan en propietarios de la organización o que se les otorgue acceso directo al repositorio que le pertenece a una organización. De forma similar, los propietarios de las organizaciones en tu empresa no tienen acceso a la empresa misma a menos de que los conviertas en propietarios de ella.
-Un propietario de la empresa solo consumirá una licencia si son propietarios o miembros de por lo menos una organización dentro de la emrpesa. Even if an enterprise owner has a role in multiple organizations, they will consume a single license. {% ifversion ghec %}Los propietrios de la empresa deben tener una cuenta personal en {% data variables.product.prodname_dotcom %}.{% endif %} Como mejor práctica, te recomendamos que solo algunas personas en tu compañía se conviertan en propietarios, para reducir el riesgo en tu negocio.
+Un propietario de la empresa solo consumirá una licencia si son propietarios o miembros de por lo menos una organización dentro de la emrpesa. Incluso si un propietario de empresa tiene un rol en varias organizaciones, consumirán una sola licencia. {% ifversion ghec %}Los propietrios de la empresa deben tener una cuenta personal en {% data variables.product.prodname_dotcom %}.{% endif %} Como mejor práctica, te recomendamos que solo algunas personas en tu compañía se conviertan en propietarios, para reducir el riesgo en tu negocio.
## Miembros de empresa
@@ -49,7 +49,7 @@ Los miembros de las organizaciones que pertenezcan a tu empresa también son mie
Las personas en tu empresa podrían tener niveles de acceso diferentes para las diversas organizaciones que pertenecen a tu empresa y para los repositorios dentro de ellas. Puedes ver los recursos a los que tiene acceso cada persona. Para obtener más información, consulta la sección "[Visualizar a las personas en tu empresa](/admin/user-management/managing-users-in-your-enterprise/viewing-people-in-your-enterprise)".
-For more information about organization-level permissions, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)."
+Para obtener más información sobre los permisos a nivel organizacional, consulta la sección "[Roles en una organización](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)".
Las personas con acceso de colaborador externo a los repositorios que pertenecen a tu organización también se listan en la pestaña de "Personas" de tu empresa, pero no son miembros empresariales y no tienen ningún tipo de acceso a la empresa. Para obtener más información sobre los colaboradores externos, consulta la sección "[Roles en una organización](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#outside-collaborators)".
diff --git a/translations/es-ES/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md b/translations/es-ES/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md
index 03fa96599c..dc997fdbd5 100644
--- a/translations/es-ES/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md
+++ b/translations/es-ES/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md
@@ -159,7 +159,7 @@ Action | Description
Action | Description
----------------------------- | -----------------------------------------------
`staff.disable_repo` | A site admin disabled access to a repository and all of its forks.
-`staff.enable_repo` | A site admin re-enabled access to a repository and all of its forks.{% ifversion ghes > 3.2 %}
+`staff.enable_repo` | A site admin re-enabled access to a repository and all of its forks.{% ifversion ghae or ghes > 3.2 %}
`staff.exit_fake_login` | A site admin ended an impersonation session on {% data variables.product.product_name %}.
`staff.fake_login` | A site admin signed into {% data variables.product.product_name %} as another user.{% endif %}
`staff.repo_unlock` | A site admin unlocked (temporarily gained full access to) one of a user's private repositories.
diff --git a/translations/es-ES/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md b/translations/es-ES/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md
index 5cc3082c60..31a0a98c1d 100644
--- a/translations/es-ES/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md
+++ b/translations/es-ES/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md
@@ -1,7 +1,7 @@
---
title: Administrar webhooks globales
-shortTitle: Manage global webhooks
-intro: You can configure global webhooks to notify external web servers when events occur within your enterprise.
+shortTitle: Adminsitrar webhooks globales
+intro: Puedes configurar webhooks globales para notificar a los servidores web externos cuándo ocurren los eventos dentro de tu empresa.
permissions: Enterprise owners can manage global webhooks for an enterprise account.
redirect_from:
- /enterprise/admin/user-management/about-global-webhooks
@@ -25,9 +25,9 @@ topics:
## Acerca de los webhooks locales
-You can use global webhooks to notify an external web server when events occur within your enterprise. You can configure the server to receive the webhook's payload, then run an application or code that monitors, responds to, or enforces rules for user and organization management for your enterprise. Para obtener más información, consulta la sección "[webhooks](/developers/webhooks-and-events/webhooks)".
+Puedes utilizar webhooks globales para notificar a un servidor web externo cuando ocurren los eventos dentro de tu empresa. Puedes configurar el servidor para que reciba la carga útil del webhook, luego ejecutar una aplicación o código que monitoree, responda a o requiera reglas para la administración de usuarios y organizaciones para tu empresa. Para obtener más información, consulta la sección "[webhooks](/developers/webhooks-and-events/webhooks)".
-For example, you can configure {% data variables.product.product_location %} to send a webhook when someone creates, deletes, or modifies a repository or organization within your enterprise. You can configure the server to automatically perform a task after receiving the webhook.
+Por ejemplo, puedes configurar a {% data variables.product.product_location %} para que envíe un webhook cuando alguien crea, borra o modifica un repositorio u organización dentro de tu empresa. Puedes configurar el servidor para que realice una tarea automáticamente después de recibir el webhook.

@@ -42,23 +42,23 @@ For example, you can configure {% data variables.product.product_location %} to
6. Escribe la URL donde quisieras recibir las cargas. 
7. Opcionalmente, usa el menú desplegable **Tipo de contenido** y haz clic en un formato de carga. 
8. Opcionalmente, en el campo **Secreto**, escribe una cadena para usar como una clave `secret`. 
-9. Optionally, if your payload URL is HTTPS and you would not like {% data variables.product.prodname_ghe_server %} to verify SSL certificates when delivering payloads, select **Disable SSL verification**. Lee la información sobre verificación SSL, luego haz clic en **Entiendo que mis webhooks pueden no ser seguros**. 
+9. Opcionalmente, si la URL de tu carga útil es HTTPS y no quisieras que {% data variables.product.prodname_ghe_server %} verifique los certificados SSL cuando entregue las cargas útiles, selecciona **Inhabilitar la verificación SSL**. Lee la información sobre verificación SSL, luego haz clic en **Entiendo que mis webhooks pueden no ser seguros**. 
{% warning %}
**Advertencia:** La verificación SSL ayuda a garantizar que las cargas de enganche se entreguen de forma segura. No es recomendable desactivar la verificación SSL.
{% endwarning %}
-10. Decide if you'd like this webhook to trigger for every event or for selected events. 
+10. Decide si te gustaría que este webhook se active para cada evento o para aquellos seleccionados. 
- Para cada evento, selecciona **Enviarme todo**.
- Para elegir eventos específicos, selecciona **Dejarme seleccionar eventos individuales**.
-11. If you chose to select individual events, select the events that will trigger the webhook.
+11. Si eliges seleccionar eventos individuales, selecciona los eventos que activarán el webhook.
{% ifversion ghec %}
- 
+ 
{% elsif ghes or ghae %}
- 
+ 
{% endif %}
-12. Confirm that the **Active** checkbox is selected. 
+12. Confirma que está seleccionada la casilla de verificación **Activo**. 
13. Haz clic en **Add webhook** (Agregar webhook).
## Editar un webhook global
diff --git a/translations/es-ES/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/setting-up-visual-studio-subscriptions-with-github-enterprise.md b/translations/es-ES/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/setting-up-visual-studio-subscriptions-with-github-enterprise.md
index c97e7b4b8e..f16f29df76 100644
--- a/translations/es-ES/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/setting-up-visual-studio-subscriptions-with-github-enterprise.md
+++ b/translations/es-ES/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/setting-up-visual-studio-subscriptions-with-github-enterprise.md
@@ -20,13 +20,13 @@ This guide shows you how your team can get {% data variables.product.prodname_vs
Before setting up {% data variables.product.prodname_vss_ghe %}, it's important to understand the roles for this combined offering.
-| Role | Servicio | Descripción | Más información |
-|:-------------------------- |:----------------------------------------------------- |:------------------------------------------------------------------------------------------------------------------------------------------- |:-------------------------------------------------------------------------------------------------------------------------------------------------- |
-| **Subscriptions admin** | {% data variables.product.prodname_vs %} subscription | Person who assigns licenses for {% data variables.product.prodname_vs %} subscription | [Overview of admin responsibilities](https://docs.microsoft.com/en-us/visualstudio/subscriptions/admin-responsibilities) in Microsoft Docs |
-| **Subscriber** | {% data variables.product.prodname_vs %} subscription | Person who uses a license for {% data variables.product.prodname_vs %} subscription | [Visual Studio Subscriptions documentation](https://docs.microsoft.com/en-us/visualstudio/subscriptions/) in Microsoft Docs |
-| **Propietario de empresa** | {% data variables.product.prodname_dotcom %} | Person who has a user account that's an administrator of an enterprise on {% data variables.product.product_location %} | "[Roles en una empresa](/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise#enterprise-owner)" |
-| **Organization owner** | {% data variables.product.prodname_dotcom %} | Person who has a user account that's an owner of an organization in your team's enterprise on {% data variables.product.product_location %} | "[Roles en una organización](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#organization-owners)" |
-| **Miembro de empresa** | {% data variables.product.prodname_dotcom %} | Person who has a user account that's a member of an enterprise on {% data variables.product.product_location %} | "[Roles en una empresa](/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise#enterprise-members)" |
+| Role | Servicio | Descripción | Más información |
+|:-------------------------- |:------------------------------------------------------- |:------------------------------------------------------------------------------------------------------------------------------------------- |:-------------------------------------------------------------------------------------------------------------------------------------------------- |
+| **Subscriptions admin** | {% data variables.product.prodname_vs %} subscription | Person who assigns licenses for {% data variables.product.prodname_vs %} subscription | [Overview of admin responsibilities](https://docs.microsoft.com/en-us/visualstudio/subscriptions/admin-responsibilities) in Microsoft Docs |
+| **Subscriber** | Suscripción de {% data variables.product.prodname_vs %} | Person who uses a license for {% data variables.product.prodname_vs %} subscription | [Visual Studio Subscriptions documentation](https://docs.microsoft.com/en-us/visualstudio/subscriptions/) in Microsoft Docs |
+| **Propietario de empresa** | {% data variables.product.prodname_dotcom %} | Person who has a user account that's an administrator of an enterprise on {% data variables.product.product_location %} | "[Roles en una empresa](/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise#enterprise-owner)" |
+| **Organization owner** | {% data variables.product.prodname_dotcom %} | Person who has a user account that's an owner of an organization in your team's enterprise on {% data variables.product.product_location %} | "[Roles en una organización](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#organization-owners)" |
+| **Miembro de empresa** | {% data variables.product.prodname_dotcom %} | Person who has a user account that's a member of an enterprise on {% data variables.product.product_location %} | "[Roles en una empresa](/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise#enterprise-members)" |
## Prerrequisitos
diff --git a/translations/es-ES/content/billing/managing-your-license-for-github-enterprise/syncing-license-usage-between-github-enterprise-server-and-github-enterprise-cloud.md b/translations/es-ES/content/billing/managing-your-license-for-github-enterprise/syncing-license-usage-between-github-enterprise-server-and-github-enterprise-cloud.md
index 742261254b..03690f920a 100644
--- a/translations/es-ES/content/billing/managing-your-license-for-github-enterprise/syncing-license-usage-between-github-enterprise-server-and-github-enterprise-cloud.md
+++ b/translations/es-ES/content/billing/managing-your-license-for-github-enterprise/syncing-license-usage-between-github-enterprise-server-and-github-enterprise-cloud.md
@@ -22,7 +22,7 @@ Para obtener más información sobre las licencias y el uso de {% data variables
## Sincronizar el uso de licencias automáticamente
-Puedes utilizar {% data variables.product.prodname_github_connect %} para sincronizar de forma automática el conteo y el uso de la licencia de usuario entre {% data variables.product.prodname_ghe_server %} y {% data variables.product.prodname_ghe_cloud %}. Para obtener más información, consulta la sección "[Habilitar la sincronización automática de licencias de usuario entre {% data variables.product.prodname_ghe_server %} y {% data variables.product.prodname_ghe_cloud %}]({% ifversion ghec %}/enterprise-server@latest{% endif %}/admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud){% ifversion ghec %}" en la documentación de {% data variables.product.prodname_ghe_server %}.{% elsif ghes %}".{% endif %}
+Puedes utilizar {% data variables.product.prodname_github_connect %} para sincronizar de forma automática el conteo y el uso de la licencia de usuario entre {% data variables.product.prodname_ghe_server %} y {% data variables.product.prodname_ghe_cloud %}. Para obtener más información, consulta la sección "[Habilitar la sincronización automática de licencias de usuario para tu empresa]({% ifversion ghec %}/enterprise-server@latest{% endif %}/admin/configuration/configuring-github-connect/enabling-automatic-user-license-sync-for-your-enterprise){% ifversion ghec %}" en la documentación de {% data variables.product.prodname_ghe_server %}{% elsif ghes %}".{% endif %}
## Sincronizar el uso de licencias manualmente
diff --git a/translations/es-ES/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/troubleshooting-the-codeql-workflow.md b/translations/es-ES/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/troubleshooting-the-codeql-workflow.md
index 182cf16d6e..8468cef2c5 100644
--- a/translations/es-ES/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/troubleshooting-the-codeql-workflow.md
+++ b/translations/es-ES/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/troubleshooting-the-codeql-workflow.md
@@ -42,7 +42,7 @@ Para producir una salida más detallada de bitácoras, puedes habilitar el regis
Puedes obtener artefactos para que te ayuden a depurar {% data variables.product.prodname_codeql %} si seleccionas un marcador de configuración de depuración. Modifica el paso de `init` de tu archivo de flujo de trabajo de {% data variables.product.prodname_codeql %} y configura `debug: true`.
-```
+```yaml
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
@@ -139,13 +139,15 @@ Si tu análisis de {% data variables.product.prodname_codeql %} escanea menos l
Reemplaza el paso `autobuild` con los mismos comandos de compilación que utilizarías en producción. Esto garantiza que {% data variables.product.prodname_codeql %} sepa exactamente cómo compilar todos los archivos de código fuente que quieras escanear. Para obtener más información, consulta la sección "[Configurar el flujo de trabajo de {% data variables.product.prodname_codeql %} para los lenguajes compilados](/code-security/secure-coding/configuring-the-codeql-workflow-for-compiled-languages#adding-build-steps-for-a-compiled-language)".
### Inspecciona la copia de los archivos de código fuente en la base de datos de {% data variables.product.prodname_codeql %}
-Podrías entender por qué algunos archivos de código fuente no se ha analizado si inspeccionas la copia del código fuente que se incluye utilizando la base de datos de {% data variables.product.prodname_codeql %}. Para obtener la base de datos del flujo de trabajo de tus acciones, agrega una acción de `upload-artifact` después del paso de análisis en tu flujo de trabajo de escaneo de código:
-```
-- uses: actions/upload-artifact@v2
+Podrías entender por qué algunos archivos de código fuente no se ha analizado si inspeccionas la copia del código fuente que se incluye utilizando la base de datos de {% data variables.product.prodname_codeql %}. To obtain the database from your Actions workflow, modify the `init` step of your {% data variables.product.prodname_codeql %} workflow file and set `debug: true`.
+
+```yaml
+- name: Initialize CodeQL
+ uses: github/codeql-action/init@v1
with:
- name: codeql-database
- path: ../codeql-database
+ debug: true
```
+
Esto carga la base de datos como un artefacto de acciones que puedes descargar en tu máquina local. Para obtener más información, consulta la sección "[Almacenar artefactos de los flujos de trabajo ](/actions/guides/storing-workflow-data-as-artifacts)".
El artefacto contendrá una copia archivada de los archivos de código fuente que escaneó el {% data variables.product.prodname_codeql %} llamada _src.zip_. Si comparas los archivos de código fuente en el repositorio con los archivos en _src.zip_, puedes ver qué tipos de archivo faltan. Una vez que sepas qué tipos de archivo son los que no se analizan es más fácil entender cómo podrías cambiar el flujo de trabajo para el análisis de {% data variables.product.prodname_codeql %}.
diff --git a/translations/es-ES/content/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning.md b/translations/es-ES/content/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning.md
index 7d5a652b49..ab3879863f 100644
--- a/translations/es-ES/content/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning.md
+++ b/translations/es-ES/content/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning.md
@@ -38,7 +38,13 @@ If you're using {% data variables.product.prodname_actions %} with the {% data v
If you're using the {% data variables.product.prodname_codeql_cli %}, then you can specify the version of SARIF to use. For more information, see "[Configuring {% data variables.product.prodname_codeql_cli %} in your CI system](/code-security/secure-coding/using-codeql-code-scanning-with-your-existing-ci-system/configuring-codeql-cli-in-your-ci-system#analyzing-a-codeql-database)."{% endif %}
{% ifversion fpt or ghes > 3.1 or ghae or ghec %}
-You can upload multiple SARIF files for the same tool and commit, and analyze each file using {% data variables.product.prodname_code_scanning %}. You can indicate a "category" for each analysis by specifying a `runAutomationDetails.id` in each file. Only SARIF files with the same category will overwrite each other. For more information about this property, see [`runAutomationDetails` object](#runautomationdetails-object) below.
+You can upload multiple SARIF files for the same commit, and display the data from each file as {% data variables.product.prodname_code_scanning %} results. When you upload multiple SARIF files for a commit, you must indicate a "category" for each analysis. The way to specify a category varies according to the analysis method:
+- Using the {% data variables.product.prodname_codeql_cli %} directly, pass the `--sarif-category` argument to the `codeql database analyze` command when you generate SARIF files. For more information, see "[Configuring CodeQL CLI in your CI system](/code-security/code-scanning/using-codeql-code-scanning-with-your-existing-ci-system/configuring-codeql-cli-in-your-ci-system#about-generating-code-scanning-results-with-codeql-cli)."
+- Using {% data variables.product.prodname_actions %} with `codeql-action/analyze`, the category is set automatically from the workflow name and any matrix variables (typically, `language`). You can override this by specifying a `category` input for the action, which is useful when you analyze different sections of a mono-repository in a single workflow.
+- Using {% data variables.product.prodname_actions %} to upload results from other static analysis tools, then you must specify a `category` input if you upload more than one file of results for the same tool in one workflow. For more information, see "[Uploading a {% data variables.product.prodname_code_scanning %} analysis with {% data variables.product.prodname_actions %}](/code-security/code-scanning/integrating-with-code-scanning/uploading-a-sarif-file-to-github#uploading-a-code-scanning-analysis-with-github-actions)."
+- If you are not using either of these approaches, you must specify a unique `runAutomationDetails.id` in each SARIF file to upload. For more information about this property, see [`runAutomationDetails` object](#runautomationdetails-object) below.
+
+If you upload a second SARIF file for a commit with the same category and from the same tool, the earlier results are overwritten. However, if you try to upload multiple SARIF files for the same tool and category in a single {% data variables.product.prodname_actions %} workflow run, the misconfiguration is detected and the run will fail.
{% endif %}
{% data variables.product.prodname_dotcom %} uses properties in the SARIF file to display alerts. For example, the `shortDescription` and `fullDescription` appear at the top of a {% data variables.product.prodname_code_scanning %} alert. The `location` allows {% data variables.product.prodname_dotcom %} to show annotations in your code file. For more information, see "[Managing {% data variables.product.prodname_code_scanning %} alerts for your repository](/code-security/secure-coding/managing-code-scanning-alerts-for-your-repository)."
diff --git a/translations/es-ES/content/code-security/code-scanning/integrating-with-code-scanning/uploading-a-sarif-file-to-github.md b/translations/es-ES/content/code-security/code-scanning/integrating-with-code-scanning/uploading-a-sarif-file-to-github.md
index f9dbd860e6..c0b9b3afea 100644
--- a/translations/es-ES/content/code-security/code-scanning/integrating-with-code-scanning/uploading-a-sarif-file-to-github.md
+++ b/translations/es-ES/content/code-security/code-scanning/integrating-with-code-scanning/uploading-a-sarif-file-to-github.md
@@ -50,7 +50,12 @@ You can upload the results using {% data variables.product.prodname_actions %},
To use {% data variables.product.prodname_actions %} to upload a third-party SARIF file to a repository, you'll need a workflow. For more information, see "[Learn {% data variables.product.prodname_actions %}](/actions/learn-github-actions)."
-Your workflow will need to use the `upload-sarif` action, which is part of the `github/codeql-action` repository. It has input parameters that you can use to configure the upload. The main input parameter you'll use is `sarif-file`, which configures the file or directory of SARIF files to be uploaded. The directory or file path is relative to the root of the repository. For more information see the [`upload-sarif` action](https://github.com/github/codeql-action/tree/HEAD/upload-sarif).
+Your workflow will need to use the `upload-sarif` action, which is part of the `github/codeql-action` repository. It has input parameters that you can use to configure the upload. The main input parameters you'll use are:
+
+- `sarif-file`, which configures the file or directory of SARIF files to be uploaded. The directory or file path is relative to the root of the repository.
+- `category` (optional), which assigns a category for results in the SARIF file. This enables you to analyze the same commit in multiple ways and review the results using the {% data variables.product.prodname_code_scanning %} views in {% data variables.product.prodname_dotcom %}. For example, you can analyze using multiple tools, and in mono-repos, you can analyze different slices of the repository based on the subset of changed files.
+
+For more information see the [`upload-sarif` action](https://github.com/github/codeql-action/tree/v1/upload-sarif).
The `upload-sarif` action can be configured to run when the `push` and `scheduled` event occur. For more information about {% data variables.product.prodname_actions %} events, see "[Events that trigger workflows](/actions/reference/events-that-trigger-workflows)."
@@ -66,7 +71,7 @@ This example workflow runs anytime commits are pushed to the repository. The act
This workflow uploads the `results.sarif` file located in the root of the repository. For more information about creating a workflow file, see "[Learn {% data variables.product.prodname_actions %}](/actions/learn-github-actions)."
-Alternatively, you could modify this workflow to upload a directory of SARIF files. For example, you could place all SARIF files in a directory in the root of your repository called `sarif-output` and set the action's input parameter `sarif_file` to `sarif-output`.
+Alternatively, you could modify this workflow to upload a directory of SARIF files. For example, you could place all SARIF files in a directory in the root of your repository called `sarif-output` and set the action's input parameter `sarif_file` to `sarif-output`. Note that if you upload a directory, each SARIF file must include a unique `runAutomationDetails.id` to define the category for the results. For more information, see "[`runAutomationDetails` object](/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning#runautomationdetails-object)."
```yaml
name: "Upload SARIF"
@@ -92,6 +97,9 @@ jobs:
with:
# Path to SARIF file relative to the root of the repository
sarif_file: results.sarif
+ # Optional category for the results
+ # Used to differentiate multiple results for one commit
+ category: my-analysis-tool
```
### Example workflow that runs the ESLint analysis tool
diff --git a/translations/es-ES/content/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning.md b/translations/es-ES/content/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning.md
index 7ef55ec4a7..d687f7760c 100644
--- a/translations/es-ES/content/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning.md
+++ b/translations/es-ES/content/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning.md
@@ -46,7 +46,16 @@ However, there can be situations where you want to scan for other secret pattern
## Regular expression syntax for custom patterns
-Custom patterns for {% data variables.product.prodname_secret_scanning %} are specified as regular expressions. {% data variables.product.prodname_secret_scanning_caps %} uses the [Hyperscan library](https://github.com/intel/hyperscan) and only supports Hyperscan regex constructs, which are a subset of PCRE syntax. Hyperscan option modifiers are not supported. For more information on Hyperscan pattern constructs, see "[Pattern support](http://intel.github.io/hyperscan/dev-reference/compilation.html#pattern-support)" in the Hyperscan documentation.
+Custom patterns for {% data variables.product.prodname_secret_scanning %} are specified as one or more regular expressions.
+
+- **Secret format:** an expression that describes the format of the secret itself.
+- **Before secret:** an expression that describes the characters that come before the secret. By default, this is set to `\A|[^0-9A-Za-z]` which means that the secret must be at the start of a line or be preceded by a non-alphanumeric character.
+- **After secret:** an expression that describes the characters that come after the secret. By default, this is set to `\z|[^0-9A-Za-z]` which means that the secret must be followed by a new line or a non-alphanumeric character.
+- **Additional match requirements:** one or more optional expressions that the secret itself must or must not match.
+
+For simple tokens you will usually only need to specify a secret format. The other fields provide flexibility so that you can specify more complex secrets without creating complex regular expressions. For an example of a custom pattern, see "[Example of a custom pattern specified using additional requirements](#example-of-a-custom-pattern-specified-using-additional-requirements)" below.
+
+{% data variables.product.prodname_secret_scanning_caps %} uses the [Hyperscan library](https://github.com/intel/hyperscan) and only supports Hyperscan regex constructs, which are a subset of PCRE syntax. Hyperscan option modifiers are not supported. For more information on Hyperscan pattern constructs, see "[Pattern support](http://intel.github.io/hyperscan/dev-reference/compilation.html#pattern-support)" in the Hyperscan documentation.
## Defining a custom pattern for a repository
@@ -61,6 +70,35 @@ Before defining a custom pattern, you must ensure that {% data variables.product
After your pattern is created, {% data reusables.secret-scanning.secret-scanning-process %} For more information on viewing {% data variables.product.prodname_secret_scanning %} alerts, see "[Managing alerts from {% data variables.product.prodname_secret_scanning %}](/code-security/secret-security/managing-alerts-from-secret-scanning)."
+### Example of a custom pattern specified using additional requirements
+
+A company has an internal token with five characteristics. They use the different fields to specify how to identify tokens as follows:
+
+| **Characteristic** | **Field and regular expression** |
+|----------------|------------------------------|
+| Length between 5 and 10 characters | Secret format: `[$#%@AA-Za-z0-9]{5,10}` |
+| Does not end in a `.` | After secret: `[^\.]` |
+| Contains numbers and uppercase letters | Additional requirements: secret must match `[A-Z]` and `[0-9]` |
+| Does not include more than one lowercase letter in a row | Additional requirements: secret must not match `[a-z]{2,}` |
+| Contains one of `$%@!` | Additional requirements: secret must match `[$%@!]` |
+
+These tokens would match the custom pattern described above:
+
+```
+a9@AAfT! # Secret string match: a9@AAfT
+ee95GG@ZA942@aa # Secret string match: @ZA942@a
+a9@AA!ee9 # Secret string match: a9@AA
+```
+
+These strings would not match the custom pattern described above:
+
+```
+a9@AA.!
+a@AAAAA
+aa9@AA!ee9
+aAAAe9
+```
+
## Defining a custom pattern for an organization
Before defining a custom pattern, you must ensure that you enable {% data variables.product.prodname_secret_scanning %} for the {% ifversion fpt or ghec %}private{% endif %} repositories that you want to scan in your organization. To enable {% data variables.product.prodname_secret_scanning %} on all {% ifversion fpt or ghec %}private{% endif %} repositories in your organization, see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)."
diff --git a/translations/es-ES/content/code-security/security-overview/about-the-security-overview.md b/translations/es-ES/content/code-security/security-overview/about-the-security-overview.md
index f6999c3007..7570d8ead5 100644
--- a/translations/es-ES/content/code-security/security-overview/about-the-security-overview.md
+++ b/translations/es-ES/content/code-security/security-overview/about-the-security-overview.md
@@ -27,22 +27,22 @@ shortTitle: Acerca del resumen de seguridad
Puedes utilizar el resumen de seguirdad para tener una vista de nivel alto del estado de seguridad de tu organización o para identificar repositorios problemáticos que requieren intervención.
- A nivel organizacional, el resumen de seguridad muestra seguridad agregada y específica del repositorio para aquellos que pertenezcan a tu organización.
-- A nivel de equipo, el resumen de seguridad muestra la información de seguridad específica del repositorio para aquellos en los que el equipo tenga privilegios de administración. For more information, see "[Managing team access to an organization repository](/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository)."
-- At the repository-level, the security overview shows which security features are enabled for the repository, and offers the option to configure any available security features not currently in use.
+- A nivel de equipo, el resumen de seguridad muestra la información de seguridad específica del repositorio para aquellos en los que el equipo tenga privilegios de administración. Para obtener más información, consulta la sección "[Administrar el acceso de un equipo a un repositorio organizacional](/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository)".
+- En el nivel del repositorio, el resumen de seguridad muestra qué características de seguridad se encuentran habilitadas para este y ofrece la opción de configurar cualquier característica de seguridad disponible que no se esté utilizando actualmente.
El resumen de seguridad indica si se encuentran habilitadas las características de {% ifversion fpt or ghes > 3.1 or ghec %}seguridad{% endif %}{% ifversion ghae %}{% data variables.product.prodname_GH_advanced_security %}{% endif %} para los repositorios que pertenecen a tu organización y consolida las alertas para cada característica.{% ifversion fpt or ghes > 3.1 or ghec %} Las características de seguridad incluyen aquellas de {% data variables.product.prodname_GH_advanced_security %}, como el {% data variables.product.prodname_code_scanning %} y el {% data variables.product.prodname_secret_scanning %}, así como las {% data variables.product.prodname_dependabot_alerts %}.{% endif %} Para obtener más información sobre las características de la {% data variables.product.prodname_GH_advanced_security %}, consulta la sección "[Acerca de la {% data variables.product.prodname_GH_advanced_security %}](/get-started/learning-about-github/about-github-advanced-security)".{% ifversion fpt or ghes > 3.1 or ghec %} Para obtener más información sobre las {% data variables.product.prodname_dependabot_alerts %}, consulta la sección "[Acerca de las alertas para las dependencias vulnerables](/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/about-alerts-for-vulnerable-dependencies#dependabot-alerts-for-vulnerable-dependencies)".{% endif %}
Para obtener más información sobre cómo proteger tu código a nivel de repositorio u organización, consulta las secciones "[Proteger tu repositorio](/code-security/getting-started/securing-your-repository)" y "[Proteger tu organización](/code-security/getting-started/securing-your-organization)".
-The application security team at your company can use the security overview for both broad and specific analyses of your organization's security status. For example, they can use the overview page to monitor adoption of features by your organization or by a specific team as you rollout {% data variables.product.prodname_GH_advanced_security %} to your enterprise, or to review all alerts of a specific type and severity level across all repositories in your organization.
+El equipo de seguridad de aplicaciones en tu compañía puede utilizar el resumen de seguridad tanto para los análisis específicos como para los generales del estado de seguridad de tu organización. Por ejemplo, pueden utilizar la página de resumen para monitorear la adopción de características en tu organización o en equipos específicos conforme implementas la {% data variables.product.prodname_GH_advanced_security %} en tu empresa o para revisar todas las alertas de un tipo específico y nivel de severidad en todos los repositorios de tu organización.
-### About filtering and sorting alerts
+### Acerca de filtrar y clasificar las alertas
-En el resumen de seguridad, puedes ver, clasificar y filtrar las alertas para entender los riesgos de seguridad en tu organización y en los repositorios específicos. The security summary is highly interactive, allowing you to investigate specific categories of information, based on qualifiers like alert risk level, alert type, and feature enablement. You can also apply multiple filters to focus on narrower areas of interest. Por ejemplo, puedes identificar repositorios privados que tengan una gran cantidad de {% data variables.product.prodname_dependabot_alerts %} o repositorios que no tengan alertas del {% data variables.product.prodname_code_scanning %}. For more information, see "[Filtering alerts in the security overview](/code-security/security-overview/filtering-alerts-in-the-security-overview)."
+En el resumen de seguridad, puedes ver, clasificar y filtrar las alertas para entender los riesgos de seguridad en tu organización y en los repositorios específicos. El resumen de seguridad es altamente interactivo, lo cual te permite investigar las categorías de información específicas con base en los calificadores como nivel de riesgo de alerta, tipo de alerta y habilitación de características. También puedes aplicar filtros múltiples para enfocarte en áreas de interés más específicas. Por ejemplo, puedes identificar repositorios privados que tengan una gran cantidad de {% data variables.product.prodname_dependabot_alerts %} o repositorios que no tengan alertas del {% data variables.product.prodname_code_scanning %}. Para obtener más información, consulta la sección "[Filtrar las alertas en el resumen de seguridad](/code-security/security-overview/filtering-alerts-in-the-security-overview)".
{% ifversion ghec or ghes > 3.4 %}
-In the security overview, at both the organization and repository level, there are dedicated views for specific security features, such as secret scanning alerts and code scanning alerts. You can use these views to limit your analysis to a specific set of alerts, and narrow the results further with a range of filters specific to each view. For example, in the secret scanning alert view, you can use the `Secret type` filter to view only secret scanning alerts for a specific secret, like a GitHub Personal Access Token. At the repository level, you can use the security overview to assess the specific repository's current security status, and configure any additional security features not yet in use on the repository.
+En el resumen de seguridad, tanto a nivel de repositorio como de organización, hay vistas dedicadas para las características de seguridad específicas, tales como alertas de escaneo de secretos y de escaneo de código. Puedes utilizar estas vistas para limitar tu análisis a un conjunto de alertas específico y reducirlos aún más con un rango de filtros específico para cada vista. Por ejemplo, en la vista de alertas del escaneo de secretos, puedes utilizar el filtro `Secret type` para ver solo las alertas de escaneo de secretos para un secreto específico, como un Token de Acceso Personal de GitHub. A nivel de repositorio, puedes utilizar el resumen de seguridad para valorar el estado de seguridad actual del repositorio específico y configurar cualquier característica de seguridad adicional que no esté utilizando el repositorio.
{% endif %}
@@ -60,6 +60,6 @@ Para cada repositorio en el resumen de seguridad, verás iconos de cada tipo de
| {% octicon "check" aria-label="Check" %} | La característica de seguridad se habilitó pero no levanta alertas en este repositorio. |
| {% octicon "x" aria-label="x" %} | La característica de seguridad no es compatible con este repositorio. |
-Predeterminadamente, los repositorios archivados se excluyen del resumen de seguridad de una organización. Puedes aplicar filtros para ver los repositorios archivados en el resumen de seguridad. For more information, see "[Filtering alerts in the security overview](/code-security/security-overview/filtering-alerts-in-the-security-overview)."
+Predeterminadamente, los repositorios archivados se excluyen del resumen de seguridad de una organización. Puedes aplicar filtros para ver los repositorios archivados en el resumen de seguridad. Para obtener más información, consulta la sección "[Filtrar las alertas en el resumen de seguridad](/code-security/security-overview/filtering-alerts-in-the-security-overview)".
El resumen de seguridad muestra alertas activas que levantan las características de seguridad. Si no hay alertas en el resumen de seguridad de un repositorio, las vulnerabilidades de seguridad no detectadas o los errores de código podrían aún existir.
diff --git a/translations/es-ES/content/code-security/security-overview/filtering-alerts-in-the-security-overview.md b/translations/es-ES/content/code-security/security-overview/filtering-alerts-in-the-security-overview.md
index 996c35a14b..cfcedc2ccc 100644
--- a/translations/es-ES/content/code-security/security-overview/filtering-alerts-in-the-security-overview.md
+++ b/translations/es-ES/content/code-security/security-overview/filtering-alerts-in-the-security-overview.md
@@ -74,18 +74,18 @@ El nivel de riesgo de un repositorio se determina por la cantidad y severidad de
## Filtra por cantidad de alertas
-Available in the organization-level overview.
+Disponible en el resumen a nivel organizacional.
-| Qualifier | Descripción |
-| ------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| code-scanning:n | Muestra los repositorios que tienen *n* alertas del {% data variables.product.prodname_code_scanning %}. This qualifier can use `=`, `>` and `<` comparison operators. |
-| secret-scanning:n | Muestra los repositorios que tienen *n* alertas del {% data variables.product.prodname_secret_scanning %}. This qualifier can use `=`, `>` and `<` comparison operators. |
-| dependabot:n | Muestra los repositorios que tienen *n* {% data variables.product.prodname_dependabot_alerts %}. This qualifier can use `=`, `>` and `<` comparison operators. |
+| Qualifier | Descripción |
+| ------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| code-scanning:n | Muestra los repositorios que tienen *n* alertas del {% data variables.product.prodname_code_scanning %}. This qualifier can use `=`, `>` and `<` comparison operators. |
+| secret-scanning:n | Muestra los repositorios que tienen *n* alertas del {% data variables.product.prodname_secret_scanning %}. Este calificador puede utilizar los operadores de comparación `=`, `>` y `<`. |
+| dependabot:n | Muestra los repositorios que tienen *n* {% data variables.product.prodname_dependabot_alerts %}. Este calificador puede utilizar los operadores de comparación `=`, `>` y `<`. |
## Filtrar por equipo
-Available in the organization-level overview.
+Disponible en el resumen a nivel organizacional.
| Qualifier | Descripción |
| ------------------------- | ---------------------------------------------------------------------------------- |
@@ -93,7 +93,7 @@ Available in the organization-level overview.
## Filtrar por tema
-Available in the organization-level overview.
+Disponible en el resumen a nivel organizacional.
| Qualifier | Descripción |
| ------------------------- | ------------------------------------------------------------ |
@@ -128,8 +128,8 @@ Available in the secret scanning alert views.
## Filter by provider
-Available in the secret scanning alert views.
+Disponible en las vistas de alerta del escaneo de secretos.
-| Qualifier | Descripción |
-| ------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `provider:PROVIDER_NAME` | Displays alerts for all secrets issues by the specified provider. For more information, see "[List of supported secrets for private repositories](/code-security/secret-scanning/about-secret-scanning#list-of-supported-secrets-for-private-repositories) |
+| Qualifier | Descripción |
+| ------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `provider:PROVIDER_NAME` | Displays alerts for all secrets issues by the specified provider. Para obtener más información, consulta la sección "[Lista de secretos compatibles para los repositorios privados](/code-security/secret-scanning/about-secret-scanning#list-of-supported-secrets-for-private-repositories) |
diff --git a/translations/es-ES/content/code-security/security-overview/viewing-the-security-overview.md b/translations/es-ES/content/code-security/security-overview/viewing-the-security-overview.md
index b8f2758082..2a572143ce 100644
--- a/translations/es-ES/content/code-security/security-overview/viewing-the-security-overview.md
+++ b/translations/es-ES/content/code-security/security-overview/viewing-the-security-overview.md
@@ -40,7 +40,7 @@ shortTitle: View the security overview
{% data reusables.repositories.navigate-to-repo %}
1. Under your repository name, click **Security**. 
2. In the security sidebar, select the view you want to open. 
-3. Opcionalmente, filtra la lista de alertas. Each view has its own selection of available filters. Puedes hacer clic en varios filtros de los menús desplegables de filtros para especificar tu búsqueda. You can also type search qualifiers in the search field. For more information about the available qualifiers, see "[Filtering alerts in the security overview](/code-security/security-overview/filtering-alerts-in-the-security-overview)." 
+3. Opcionalmente, filtra la lista de alertas. Cada vista tiene su propia selección de filtros disponibles. Puedes hacer clic en varios filtros de los menús desplegables de filtros para especificar tu búsqueda. También puedes teclear calificadores de búsqueda en el campo de búsqueda. Para obtener más información sobre los calificadores disponibles, consulta la sección "[Filtrar las alertas en el resumen de seguridad](/code-security/security-overview/filtering-alerts-in-the-security-overview)". 
{% endif %}
diff --git a/translations/es-ES/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/configuring-notifications-for-vulnerable-dependencies.md b/translations/es-ES/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/configuring-notifications-for-vulnerable-dependencies.md
index 9c69176e43..c85d937834 100644
--- a/translations/es-ES/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/configuring-notifications-for-vulnerable-dependencies.md
+++ b/translations/es-ES/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/configuring-notifications-for-vulnerable-dependencies.md
@@ -33,7 +33,7 @@ Cuando el {% data variables.product.prodname_dependabot %} detecta las dependenc
{% ifversion ghes or ghae-issue-4864 %}
Predeterminadamente, si el propietario de tu empresa configuró las notificaciones por correo electrónico en ella, recibirás las {% data variables.product.prodname_dependabot_alerts %} por este medio.
-Los propietarios de empresas también pueden habilitar las {% data variables.product.prodname_dependabot_alerts %} sin notificaciones. Para obtener más información, consulta la sección "[Habilitar la gráfica de dependencias y las {% data variables.product.prodname_dependabot_alerts %} en tu cuenta empresarial](/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account)".
+Los propietarios de empresas también pueden habilitar las {% data variables.product.prodname_dependabot_alerts %} sin notificaciones. Para obtener más información, consulta la sección "[Habilitar la gráfica de dependencias y las {% data variables.product.prodname_dependabot_alerts %} en tu cuenta empresarial](/admin/configuration/configuring-github-connect/enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise)".
{% endif %}
## Configurar las notificaciones para las {% data variables.product.prodname_dependabot_alerts %}
diff --git a/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review.md b/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review.md
index 9a661152a1..9c367bfa9d 100644
--- a/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review.md
+++ b/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review.md
@@ -46,4 +46,4 @@ Dependency review supports the same languages and package management ecosystems
## Enabling dependency review
-The dependency review feature becomes available when you enable the dependency graph. {% ifversion fpt or ghec %}For more information, see "[Enabling the dependency graph](/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph#enabling-the-dependency-graph)."{% endif %}{% ifversion ghes or ghae %}For more information, see "[Enabling the dependency graph and Dependabot alerts on your enterprise account](/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account)."{% endif %}
+The dependency review feature becomes available when you enable the dependency graph. {% ifversion fpt or ghec %}For more information, see "[Enabling the dependency graph](/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph#enabling-the-dependency-graph)."{% endif %}{% ifversion ghes or ghae %}For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} for your enterprise](/admin/configuration/configuring-github-connect/enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise)."{% endif %}
diff --git a/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md b/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md
index 14ea4e4b20..716a544e20 100644
--- a/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md
+++ b/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md
@@ -65,7 +65,7 @@ You can use the dependency graph to:
{% ifversion fpt or ghec %}To generate a dependency graph, {% data variables.product.product_name %} needs read-only access to the dependency manifest and lock files for a repository. The dependency graph is automatically generated for all public repositories and you can choose to enable it for private repositories. For information about enabling or disabling it for private repositories, see "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)."{% endif %}
-{% ifversion ghes or ghae %}If the dependency graph is not available in your system, your enterprise owner can enable the dependency graph and {% data variables.product.prodname_dependabot_alerts %}. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} on your enterprise account](/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account)."{% endif %}
+{% ifversion ghes or ghae %}If the dependency graph is not available in your system, your enterprise owner can enable the dependency graph and {% data variables.product.prodname_dependabot_alerts %}. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} for your enterprise](/admin/configuration/configuring-github-connect/enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise)."{% endif %}
When the dependency graph is first enabled, any manifest and lock files for supported ecosystems are parsed immediately. The graph is usually populated within minutes but this may take longer for repositories with many dependencies. Once enabled, the graph is automatically updated with every push to the repository{% ifversion fpt or ghec %} and every push to other repositories in the graph{% endif %}.
diff --git a/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md b/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md
index fa87938058..16145e516f 100644
--- a/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md
+++ b/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md
@@ -34,7 +34,7 @@ The dependency graph shows the dependencies{% ifversion fpt or ghec %} and depen
{% endif %}
{% ifversion ghes or ghae-issue-4864 %}
-Enterprise owners can configure the dependency graph at an enterprise level. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} on your enterprise account](/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account)."
+Enterprise owners can configure the dependency graph at an enterprise level. For more information, see "[Enabling the dependency graph and {% data variables.product.prodname_dependabot_alerts %} for your enterprise](/admin/configuration/configuring-github-connect/enabling-the-dependency-graph-and-dependabot-alerts-for-your-enterprise)."
{% endif %}
### Dependencies view
diff --git a/translations/es-ES/content/codespaces/codespaces-reference/using-the-vs-code-command-palette-in-codespaces.md b/translations/es-ES/content/codespaces/codespaces-reference/using-the-vs-code-command-palette-in-codespaces.md
index 1217e59619..cda667f43b 100644
--- a/translations/es-ES/content/codespaces/codespaces-reference/using-the-vs-code-command-palette-in-codespaces.md
+++ b/translations/es-ES/content/codespaces/codespaces-reference/using-the-vs-code-command-palette-in-codespaces.md
@@ -33,7 +33,7 @@ You can access the {% data variables.product.prodname_vscode_command_palette %}
## Comandos para los {% data variables.product.prodname_github_codespaces %}
-To see all commands related to {% data variables.product.prodname_github_codespaces %}, [access the {% data variables.product.prodname_vscode_command_palette %}](#accessing-the-command-palette), then start typing "Codespaces".
+Para ver todos los comandos relacionados con {% data variables.product.prodname_github_codespaces %}, [accede a la {% data variables.product.prodname_vscode_command_palette %}](#accessing-the-command-palette) y luego comienza a teclear "Codespaces".

diff --git a/translations/es-ES/content/codespaces/index.md b/translations/es-ES/content/codespaces/index.md
index da81bc9add..cc695fbf2a 100644
--- a/translations/es-ES/content/codespaces/index.md
+++ b/translations/es-ES/content/codespaces/index.md
@@ -17,6 +17,14 @@ featuredLinks:
- /codespaces/getting-started-with-codespaces/getting-started-with-your-python-project-in-codespaces
- /codespaces/getting-started-with-codespaces/getting-started-with-your-java-project-in-codespaces
- /codespaces/getting-started-with-codespaces/getting-started-with-your-dotnet-project
+ videos:
+ - title: "Inside GitHub: Moving GitHub's Development to Codespaces – Cory Wilkerson"
+ href: 'https://www.youtube-nocookie.com/embed/Lj_RpjEuESE'
+ - title: "Making Codespaces Work for You – Allison Weins, Bailey Brooks"
+ href: 'https://www.youtube-nocookie.com/embed/X9Z-rUixnzk'
+ - title: "Coding in the cloud with GitHub Codespaces and VS Code – Damian Brady"
+ href: 'https://www.youtube-nocookie.com/embed/xWr_yH_AGVs'
+ videosHeading: GitHub Universe 2021 videos
guideCards:
- /codespaces/getting-started/deep-dive
- /codespaces/developing-in-codespaces/creating-a-codespace
diff --git a/translations/es-ES/content/codespaces/managing-codespaces-for-your-organization/restricting-access-to-machine-types.md b/translations/es-ES/content/codespaces/managing-codespaces-for-your-organization/restricting-access-to-machine-types.md
index 975552f340..ad2828ba7f 100644
--- a/translations/es-ES/content/codespaces/managing-codespaces-for-your-organization/restricting-access-to-machine-types.md
+++ b/translations/es-ES/content/codespaces/managing-codespaces-for-your-organization/restricting-access-to-machine-types.md
@@ -22,7 +22,7 @@ As an organization owner, you may want to configure constraints on the types of
If there are existing codespaces that no longer conform to a policy you have defined, these codespaces will continue to operate until they time out. When the user attempts to resume the codespace they are shown a message telling them that the currenly selected machine type is no longer allowed for this organization and prompting them to choose an alternative machine type.
-If you remove higher specification machine types that are required by the {% data variables.product.prodname_codespaces %} configuration for an individual repository in your organization, then it won't be possible to create a codespace for that repository. When someone attempts to create a codespace they will see a message telling them that there are no valid machine types available that meet the requirements of the repository's {% data variables.product.prodname_codespaces %} configuration.
+Si eliminas tipos de máquina con especificaciones más altas, los cuales requiera la configuración de {% data variables.product.prodname_codespaces %} para un repositorio individual de tu organización, entonces no se podrá crear un codespace en dicho repositorio. Cuando alguien intenta crear un codespace, verán un mensaje que les dice que no hay tipos de máquina válidos disponibles que cumplan con los requisitos de la configuración de {% data variables.product.prodname_codespaces %} del repositorio.
{% note %}
@@ -33,7 +33,7 @@ If you remove higher specification machine types that are required by the {% dat
If setting a policy for machine types prevents people from using {% data variables.product.prodname_codespaces %} for a particular repository there are two options:
* You can adjust your policies to specifically remove the restrictions from the affected repository.
-* Anyone who has a codespace that they can no longer access, because of the new policy, can export their codespace to a branch. This branch will contain all of their changes from the codespace. They can then open a new codespace on this branch with a compliant machine type or work on this branch locally. For more information, see "[Exporting changes to a branch](/codespaces/troubleshooting/exporting-changes-to-a-branch)."
+* Anyone who has a codespace that they can no longer access, because of the new policy, can export their codespace to a branch. This branch will contain all of their changes from the codespace. They can then open a new codespace on this branch with a compliant machine type or work on this branch locally. Para obtener más información, consulta la sección "[Exportar cambios a una rama](/codespaces/troubleshooting/exporting-changes-to-a-branch)".
### Setting organization-wide and repository-specific policies
@@ -84,7 +84,7 @@ If you add an organization-wide policy, you should set it to the largest choice
## Deleting a policy
-1. Display the "Codespace policies" page. For more information, see "[Adding a policy to limit the available machine types](#adding-a-policy-to-limit-the-available-machine-types)."
+1. Muestra la página de "Políticas del Codespace". Para obtener más información, consulta la sección "[Agregar una política para limitar los tipos de máquina disponibles](#adding-a-policy-to-limit-the-available-machine-types)".
1. Click the delete button to the right of the policy you want to delete.

diff --git a/translations/es-ES/content/codespaces/setting-up-your-project-for-codespaces/setting-a-minimum-specification-for-codespace-machines.md b/translations/es-ES/content/codespaces/setting-up-your-project-for-codespaces/setting-a-minimum-specification-for-codespace-machines.md
index a0091a48fa..5fead9bdad 100644
--- a/translations/es-ES/content/codespaces/setting-up-your-project-for-codespaces/setting-a-minimum-specification-for-codespace-machines.md
+++ b/translations/es-ES/content/codespaces/setting-up-your-project-for-codespaces/setting-a-minimum-specification-for-codespace-machines.md
@@ -40,7 +40,7 @@ If your project needs a certain level of compute power, you can configure {% dat
You can specify any or all of the options: `cpus`, `memory`, and `storage`.
- To check the specifications of the {% data variables.product.prodname_codespaces %} machine types that are currently available for your repository, step through the process of creating a codespace until you see the choice of machine types. Para obtener más información, consulta la sección "[Crear un codespace](/codespaces/developing-in-codespaces/creating-a-codespace#creating-a-codespace)".
+ Para verificar las especificaciones de los tipos de máquina de {% data variables.product.prodname_codespaces %} que actualmente están disponibles para tu repositorio, realiza el proceso de crear un codespace hasta que veas la elección de tipos de máquina. Para obtener más información, consulta la sección "[Crear un codespace](/codespaces/developing-in-codespaces/creating-a-codespace#creating-a-codespace)".
1. Save the file and commit your changes to the required branch of the repository.
diff --git a/translations/es-ES/content/codespaces/the-githubdev-web-based-editor.md b/translations/es-ES/content/codespaces/the-githubdev-web-based-editor.md
index c4f812ed79..49ffb9cf91 100644
--- a/translations/es-ES/content/codespaces/the-githubdev-web-based-editor.md
+++ b/translations/es-ES/content/codespaces/the-githubdev-web-based-editor.md
@@ -105,4 +105,4 @@ Si tienes problemas para abrir el {% data variables.product.prodname_serverless
- El {% data variables.product.prodname_serverless %} es actualmente compatible en Chrome (y en varios otros buscadores basados en Chromium), Edge, Firefox y Safari. Te recomendamos que utilices las últimas versiones de estos buscadores.
- Es posible que algunos enlaces de teclas no funcionen, dependiendo del buscador que estás utilizando. Estas limitaciones de enlaces de teclas se documentan en la sección de "[limitaciones conocidas y adaptaciones](https://code.visualstudio.com/docs/remote/codespaces#_known-limitations-and-adaptations)" de la documentación de {% data variables.product.prodname_vscode %}.
-- `.` may not work to open the {% data variables.product.prodname_serverless %} according to your local keyboard layout. In that case, you can open any {% data variables.product.prodname_dotcom %} repository in the {% data variables.product.prodname_serverless %} by changing the URL from `github.com` to `github.dev`.
+- `.` podría no funcionar para abrir el {% data variables.product.prodname_serverless %} de acuerdo con tu diseño de teclado local. En dado caso, puedes abrir cualquier repositorio de {% data variables.product.prodname_dotcom %} en el {% data variables.product.prodname_serverless %} si cambias la URL de `github.com` a `github.dev`.
diff --git a/translations/es-ES/content/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-personal-account.md b/translations/es-ES/content/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-personal-account.md
index bbaf918d4a..9fe17dd2ec 100644
--- a/translations/es-ES/content/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-personal-account.md
+++ b/translations/es-ES/content/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-personal-account.md
@@ -34,6 +34,8 @@ Cuando bloqueas a un usuario:
- Se te elimina como colaborador en sus repositorios
- Ya no contarás con su patrocinio
- Cualquier invitación de sucesor de una cuenta o repositorio que se haga a o que provenga del usuario bloqueado se cancela
+- El usuario se eliminó como colaborador en todos los tableros de proyecto & proyectos (beta) que te pertenecen
+- Se te eliminó como colaborador de todos los tableros de proyecto & proyectos (beta) que le pertenecen al usuario
Después de que hayas bloqueado a un usuario, no podrá:
- Enviarte notificaciones, incluso al [@mencionar](/articles/basic-writing-and-formatting-syntax/#mentioning-people-and-teams) tu nombre de usuario
@@ -46,6 +48,8 @@ Después de que hayas bloqueado a un usuario, no podrá:
- Realizar referencias cruzadas con tus repositorios en comentarios
- Bifurcar, observar, fijar o marcar con estrella a tus repositorios
- Patrocinarte
+- Te agregó como colaborador en sus tableros de proyecto & proyectos (beta)
+- Haz cambios en tus tableros de proyecto & proyectos (beta)
En los repositorios que te pertenecen, los usuarios bloqueados tampoco podrán:
- Abrir propuestas
diff --git a/translations/es-ES/content/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository.md b/translations/es-ES/content/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository.md
index 6eb7679445..dbb702220a 100644
--- a/translations/es-ES/content/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository.md
+++ b/translations/es-ES/content/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository.md
@@ -37,7 +37,7 @@ Las licencias de código abierto permiten que otras personas usen, cambien y dis
{% endif %}
-{% ifversion ghes or ghae %}
+{% ifversion ghes %}
{% data reusables.repositories.navigate-to-repo %}
{% data reusables.files.add-file %}
diff --git a/translations/es-ES/content/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file.md b/translations/es-ES/content/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file.md
index 6a81c709b7..44631fa96d 100644
--- a/translations/es-ES/content/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file.md
+++ b/translations/es-ES/content/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file.md
@@ -23,31 +23,31 @@ Puedes agregar archivos de salud comunitaria predeterminados a un repositorio p
- la carpeta `.github`
- la carpeta `docs`
-Por ejemplo, cualquiera que crea una propuesta o solicitud de cambios en un repositorio que no tenga su propio archivo de "CONTRIBUTING" verá un enlace en el archivo "CONTRIBUTING" predeterminado. Si un repositorio tiene cualquier archivo en su propia carpeta {% ifversion fpt or ghae or ghes or ghec %} de `.github/ISSUE_TEMPLATE`, incluyendo las plantillas de reporte de problemas o un archivo{% endif %}de *config.yml*, no se utilizará ninguno de los contenidos de la carpeta `.github/ISSUE_TEMPLATE`.
+Por ejemplo, cualquiera que crea una propuesta o solicitud de cambios en un repositorio que no tenga su propio archivo de "CONTRIBUTING" verá un enlace en el archivo "CONTRIBUTING" predeterminado. Si un repositorio tiene cualquier archivo en su propia carpeta {% ifversion fpt or ghes or ghec %} de `.github/ISSUE_TEMPLATE`, incluyendo las plantillas de reporte de problemas o un archivo{% endif %}de *config.yml*, no se utilizará ninguno de los contenidos de la carpeta `.github/ISSUE_TEMPLATE`.
Los archivos predeterminados no están incluidos en los clones, paquetes ni descargas de repositorios individuales porque se almacenan únicamente en el repositorio `.github`.
## Tipos de archivos admitidos
-Puedes crear versiones predeterminadas en tu organización{% ifversion fpt or ghae or ghes or ghec %} o cuenta de usuario{% endif %} para los siguientes archivos de salud de la comunidad:
+Puedes crear versiones predeterminadas en tu organización{% ifversion fpt or ghes or ghec %} o cuenta de usuario{% endif %} para los siguientes archivos de salud de la comunidad:
-| Archivo de salud de la comunidad | Descripción |
-| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |{% ifversion fpt or ghec %}
-| *CODE_OF_CONDUCT.md* | Un archivo CODE_OF_CONDUCT define las normas para participar en una comunidad. Para obtener más información, consulta "[Agregar un código de conducta a tu proyecto](/articles/adding-a-code-of-conduct-to-your-project/)".{% endif %}
-| *CONTRIBUTING.md* | Un archivo CONTRIBUTING comunica cómo pueden contribuir las personas con tu proyecto. Para obtener más información, consulta "[Establecer pautas para los colaboradores del repositorio](/articles/setting-guidelines-for-repository-contributors/)".{% ifversion fpt or ghec %}
-| *FUNDING.yml* | Un archivo FUNDING muestra un botón de patrocinador en tu repositorio para aumentar la visibilidad de las opciones de financiación para tu proyecto de código abierto. Para obtener más información, consulta "[Mostrar un botón de patrocinador en tu repositorio](/articles/displaying-a-sponsor-button-in-your-repository)".{% endif %}
-| Plantillas de reporte de problemas y solicitudes de extracción{% ifversion fpt or ghae or ghes or ghec %} y *config.yml*{% endif %} | Las plantillas de propuestas y solicitudes de extracción personalizan y estandarizan la información que quieres que incluyan los colaboradores cuando abren propuestas y solicitudes de extracción en tu repositorio. Para obtener más información, consulta "[Acerca de las plantillas de propuestas y de solicitudes de extracción](/articles/about-issue-and-pull-request-templates/)".{% ifversion fpt or ghes > 3.0 or ghec %}
-| *SECURITY.md* | Un archivo de seguridad proporciona indicaciones para saber cómo reportar la vulnerabilidad de seguridad de tu proyecto. Para obtener más información, consulta "[Aumentar la seguridad para tu repositorio](/code-security/getting-started/adding-a-security-policy-to-your-repository)".{% endif %}
-| *SUPPORT.md* | Un archivo SOPPORT les permite a las personas conocer las formas de obtener ayuda con tu proyecto. Para obtener más información, consulta "[Agregar recursos de soporte a tu proyecto](/articles/adding-support-resources-to-your-project/)." |
+| Archivo de salud de la comunidad | Descripción |
+| --------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |{% ifversion fpt or ghec %}
+| *CODE_OF_CONDUCT.md* | Un archivo CODE_OF_CONDUCT define las normas para participar en una comunidad. Para obtener más información, consulta "[Agregar un código de conducta a tu proyecto](/articles/adding-a-code-of-conduct-to-your-project/)".{% endif %}
+| *CONTRIBUTING.md* | Un archivo CONTRIBUTING comunica cómo pueden contribuir las personas con tu proyecto. Para obtener más información, consulta "[Establecer pautas para los colaboradores del repositorio](/articles/setting-guidelines-for-repository-contributors/)".{% ifversion fpt or ghec %}
+| *FUNDING.yml* | Un archivo FUNDING muestra un botón de patrocinador en tu repositorio para aumentar la visibilidad de las opciones de financiación para tu proyecto de código abierto. Para obtener más información, consulta "[Mostrar un botón de patrocinador en tu repositorio](/articles/displaying-a-sponsor-button-in-your-repository)".{% endif %}
+| Plantillas de reporte de problemas y solicitudes de extracción{% ifversion fpt or ghes or ghec %} y *config.yml*{% endif %} | Las plantillas de propuestas y solicitudes de extracción personalizan y estandarizan la información que quieres que incluyan los colaboradores cuando abren propuestas y solicitudes de extracción en tu repositorio. Para obtener más información, consulta "[Acerca de las plantillas de propuestas y de solicitudes de extracción](/articles/about-issue-and-pull-request-templates/)".{% ifversion fpt or ghes > 3.0 or ghec %}
+| *SECURITY.md* | Un archivo de seguridad proporciona indicaciones para saber cómo reportar la vulnerabilidad de seguridad de tu proyecto. Para obtener más información, consulta "[Aumentar la seguridad para tu repositorio](/code-security/getting-started/adding-a-security-policy-to-your-repository)".{% endif %}
+| *SUPPORT.md* | Un archivo SOPPORT les permite a las personas conocer las formas de obtener ayuda con tu proyecto. Para obtener más información, consulta "[Agregar recursos de soporte a tu proyecto](/articles/adding-support-resources-to-your-project/)." |
No puedes crear un archivo de licencia predeterminado. Los archivos de licencia se deben agregar a repositorios individuales, de manera que el archivo se incluirá cuando el proyecto se clone, se coloque dentro de un paquete o se descargue.
## Crear un repositorio para archivos predeterminados
{% data reusables.repositories.create_new %}
-2. Utiliza el menú desplegable en **Propietario**, y selecciona la organización{% ifversion fpt or ghae or ghes or ghec %} o cuenta de usuario{% endif %} para la cual quieres crear los archivos predeterminados. 
+2. Utiliza el menú desplegable en **Propietario**, y selecciona la organización{% ifversion fpt or ghes or ghec %} o cuenta de usuario{% endif %} para la cual quieres crear los archivos predeterminados. 
3. Escribe **.github** como nombre para tu repositorio y escribe una descripción opcional. 
4. Asegúrate de que el estado del repositorio se encuentre configurado en **Público** (los repositorios para los archivos predeterminados no pueden ser privados). 
{% data reusables.repositories.initialize-with-readme %}
{% data reusables.repositories.create-repo %}
-7. En el repositorio, crea uno de los archivos admitidos de estado de la comunidad. Las plantillas de reporte de problemas{% ifversion fpt or ghae or ghes or ghec %} y su archivo de configuración{% endif %} deben estar en una carpeta llamada `.github/ISSUE_TEMPLATE`. El resto de los archivos compatibles podrían estar en la raíz del repositorio, en la carpeta de `.github` o en la de `docs`. Para obtener más información, consulta "[Crear nuevos archivos](/articles/creating-new-files/)."
+7. En el repositorio, crea uno de los archivos admitidos de estado de la comunidad. Las plantillas de reporte de problemas{% ifversion fpt or ghes or ghec %} y su archivo de configuración{% endif %} deben estar en una carpeta llamada `.github/ISSUE_TEMPLATE`. El resto de los archivos compatibles podrían estar en la raíz del repositorio, en la carpeta de `.github` o en la de `docs`. Para obtener más información, consulta "[Crear nuevos archivos](/articles/creating-new-files/)."
diff --git a/translations/es-ES/content/developers/apps/building-github-apps/creating-a-github-app-using-url-parameters.md b/translations/es-ES/content/developers/apps/building-github-apps/creating-a-github-app-using-url-parameters.md
index 757b5bd7df..272123c3e8 100644
--- a/translations/es-ES/content/developers/apps/building-github-apps/creating-a-github-app-using-url-parameters.md
+++ b/translations/es-ES/content/developers/apps/building-github-apps/creating-a-github-app-using-url-parameters.md
@@ -99,7 +99,7 @@ Puedes seleccionar los permisos en una secuencia de consulta utilizando los nomb
| [`security_events`](/rest/reference/permissions-required-for-github-apps/#permission-on-security-events) | Otorga acceso a la [API de escaneo de código](/rest/reference/code-scanning/). Puede ser uno de entre `none`, `read`, o `write`.{% endif %}
| [`single_file`](/rest/reference/permissions-required-for-github-apps/#permission-on-single-file) | Otorga acceso a la [API de Contenidos](/rest/reference/repos#contents). Puede ser uno de entre `none`, `read`, o `write`. |
| [`starring`](/rest/reference/permissions-required-for-github-apps/#permission-on-starring) | Otorga acceso a la [API de marcar con estrella](/rest/reference/activity#starring). Puede ser uno de entre `none`, `read`, o `write`. |
-| [`estados`](/rest/reference/permissions-required-for-github-apps/#permission-on-statuses) | Otorga acceso a la [API de Estados](/rest/reference/repos#statuses). Puede ser uno de entre `none`, `read`, o `write`. |
+| [`estados`](/rest/reference/permissions-required-for-github-apps/#permission-on-statuses) | Otorga acceso a la [API de Estados](/rest/reference/commits#commit-statuses). Puede ser uno de entre `none`, `read`, o `write`. |
| [`team_discussions`](/rest/reference/permissions-required-for-github-apps/#permission-on-team-discussions) | Otorga acceso a la [API de debates de equipo](/rest/reference/teams#discussions) y a la [API de comentarios en debates de equipo](/rest/reference/teams#discussion-comments). Puede ser uno de entre `none`, `read`, o `write`.{% ifversion fpt or ghes or ghae-issue-4864 or ghec %}
| `vulnerability_alerts` | Otorga acceso para recibir alertas de seguridad para las dependencias vulnerables en un repositorio. Consulta la sección "[Acerca de las alertas para las dependencias vulnerables](/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies/)" para aprender más. Puede ser uno de entre: `none` o `read`.{% endif %}
| `observando` | Otorga acceso a la lista y cambia los repositorios a los que un usuario está suscrito. Puede ser uno de entre `none`, `read`, o `write`. |
diff --git a/translations/es-ES/content/developers/overview/github-developer-program.md b/translations/es-ES/content/developers/overview/github-developer-program.md
index d866787159..4b8b3441b6 100644
--- a/translations/es-ES/content/developers/overview/github-developer-program.md
+++ b/translations/es-ES/content/developers/overview/github-developer-program.md
@@ -22,7 +22,7 @@ Crea tus propias herramientas que se integren de manera continua con el lugar en
## Házte cargo de la empresa
-Email partnerships@github.com to request developer licenses to build and test your application against {% data variables.product.prodname_ghe_server %}.
+Contacta por correo electrónico a partnerships@github.com para solicitar licencias de desarrollador para compilar y probar tu aplicación contra {% data variables.product.prodname_ghe_server %}.
## ¿Tienes una integración que opera con GitHub?
diff --git a/translations/es-ES/content/developers/overview/replacing-github-services.md b/translations/es-ES/content/developers/overview/replacing-github-services.md
index e633382f41..f00a8fcd36 100644
--- a/translations/es-ES/content/developers/overview/replacing-github-services.md
+++ b/translations/es-ES/content/developers/overview/replacing-github-services.md
@@ -32,7 +32,7 @@ Como una alternativa al servicio de correo electrónico, ahora puedes comenzar a
GitHub Services (a veces conocido como Ganchos de Servicio) es el método tradicional de integración en donde GitHub hospedó una porción de los servicios de nuestros integradores a través [del repositorio`github-services`](https://github.com/github/github-services). Las acciones que se realizan en GitHub activan estos servicios, y puedes utilizarlos a su vez para activar acciones fuera de GitHub.
-{% ifversion ghes or ghae %}
+{% ifversion ghes %}
## Encontrar los repositorios que utilizan GitHub Services
Proporcionamos un script de línea de comandos que te ayuda a identificar los repositorios de tu aplicativo que utilizan GitHub Services. Para obtener más información, consulta [ghe-legacy-github-services-report](/enterprise/{{currentVersion}}/admin/articles/command-line-utilities/#ghe-legacy-github-services-report).{% endif %}
diff --git a/translations/es-ES/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md b/translations/es-ES/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md
index c9d8864df5..7464774146 100644
--- a/translations/es-ES/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md
+++ b/translations/es-ES/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md
@@ -127,6 +127,34 @@ Actividad relacionada con una regla de protección de rama. Para obtener más in
{{ webhookPayloadsForCurrentVersion.branch_protection_rule.edited }}
{% endif %}
+
+{% ifversion ghes > 3.3 %}
+## cache_sync
+
+Se sincronizó una Git ref exitosamente en una réplica de caché. Para obtener más información, consulta la sección "[Acerca del almacenamiento en caché de repositorios](/admin/enterprise-management/caching-repositories/about-repository-caching)".
+
+### Disponibilidad
+
+- Webhooks de repositorio
+- Webhooks de organización
+
+### Objeto de carga útil del webhook
+
+| Clave | Tipo | Descripción |
+| ---------------- | ----------- | ------------------------------------------------------------------ |
+| `cache_location` | `secuencia` | La ubicación del servidor caché que se actualizó. |
+| `ref` | `secuencia` | La ref que se actualizó. |
+| `before` | `secuencia` | La OID del ref en la réplica de caché antes de que se actualizara. |
+| `after` | `secuencia` | La OID del ref en la réplica de caché después de la actualización. |
+{% data reusables.webhooks.repo_desc %}
+{% data reusables.webhooks.org_desc %}
+{% data reusables.webhooks.sender_desc %}
+
+### Ejemplo de carga útil del webhook
+
+{{ webhookPayloadsForCurrentVersion.cache_sync.synced }}
+{% endif %}
+
## check_run
{% data reusables.webhooks.check_run_short_desc %}
@@ -353,7 +381,7 @@ Los eventos de webhook se desencadenan basándose en la especificidad del domini
| Clave | Tipo | Descripción |
| ---------------------------------- | ------------------------------------------- | ----------------------------------------------------------------------------------------------- |{% ifversion fpt or ghes or ghae or ghec %}
| `Acción` | `secuencia` | La acción realizada. Puede ser `created`.{% endif %}
-| `deployment_status` | `objeto` | El [Estado del despliegue](/rest/reference/deployments#list-deployment-statuses). |
+| `deployment_status` | `objeto` | El [estado del despliegue](/rest/reference/deployments#list-deployment-statuses). |
| `deployment_status["state"]` | `secuencia` | El estado nuevo. Puede ser `pending`, `success`, `failure`, o `error`. |
| `deployment_status["target_url"]` | `secuencia` | El enlace opcional agregado al estado. |
| `deployment_status["description"]` | `secuencia` | La descripción opcional legible para las personas que se agrega al estado. |
diff --git a/translations/es-ES/content/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository.md b/translations/es-ES/content/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository.md
index dacd5008d7..a0135f7566 100644
--- a/translations/es-ES/content/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository.md
+++ b/translations/es-ES/content/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository.md
@@ -71,7 +71,7 @@ Editar un debate que se ha fijado no cambiará la categoría del mismo. Para obt
## Transferir un debate
-Para transferir un debate, debes tener permisos para crear debates en el repositorio a donde quieras trasnferirlo.
+Para transferir un debate, debes tener permisos para crear debates en el repositorio a donde quieras trasnferirlo. Solo puedes transferir debates entre los repositorios que pertenezcan a la misma cuenta de organización o de usuario. No puedes transferir un debate desde un repositorio privado hacia uno público.
{% data reusables.repositories.navigate-to-repo %}
{% data reusables.discussions.discussions-tab %}
diff --git a/translations/es-ES/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/use-autograding.md b/translations/es-ES/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/use-autograding.md
index c8a559beab..1ec7ff24e7 100644
--- a/translations/es-ES/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/use-autograding.md
+++ b/translations/es-ES/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/use-autograding.md
@@ -60,7 +60,7 @@ Una prueba de comando de ejecución ejecuta un comando de configuración y luego
Puedes agregar pruebas de calificación automática durante la creación de una tarea nueva. {% data reusables.classroom.for-more-information-about-assignment-creation %}
-Puedes agregar, editar o borrar las pruebas de calificación automática para una tarea existente. Si cambias las pruebas de calificación automática para una tarea existente, los repositorios de tareas existentes no se verán afectados. Un alumno o equipo debe aceptar la tarea y crear un repositorio de tareas nuevo para utilizar las pruebas nuevas.
+Puedes agregar, editar o borrar las pruebas de calificación automática para una tarea existente. Todos los cambios que se hagan a través de la IU del aula se subirán a los repositorios existentes de los alumnos, así que edita tus pruebas con cuidado.
{% data reusables.classroom.sign-into-github-classroom %}
{% data reusables.classroom.click-classroom-in-list %}
diff --git a/translations/es-ES/content/get-started/learning-about-github/about-versions-of-github-docs.md b/translations/es-ES/content/get-started/learning-about-github/about-versions-of-github-docs.md
index 920c7bc712..685e10d575 100644
--- a/translations/es-ES/content/get-started/learning-about-github/about-versions-of-github-docs.md
+++ b/translations/es-ES/content/get-started/learning-about-github/about-versions-of-github-docs.md
@@ -23,7 +23,7 @@ At the top of a page on {% data variables.product.prodname_docs %}, select the d
## Determining which {% data variables.product.company_short %} product you use
-You can determine which {% data variables.product.company_short %} product you're currently using by reviewing the URL in the address bar of your browser and the heading for the {% data variables.product.prodname_dotcom %} website you're on.
+Puedes determinar qué producto de {% data variables.product.company_short %} estás utilizando actualmente si revisas la URL en la barra de dirección de tu buscador y el encabezado del sitio web de {% data variables.product.prodname_dotcom %} en el que estás.
You may use more than one {% data variables.product.company_short %} product. For example, you might contribute to open source on {% data variables.product.prodname_dotcom_the_website %} and collaborate on code on your employer's {% data variables.product.prodname_ghe_server %} instance. You may need to view different versions of the same article at different times, depending on the problem you're currently trying to solve.
@@ -37,7 +37,7 @@ In a wide browser window, there is no text that immediately follows the {% data
On {% data variables.product.prodname_dotcom_the_website %}, each account has its own plan. Each personal account has an associated plan that provides access to certain features, and each organization has a different associated plan. Si tu cuenta personal es miembro de una organización de {% data variables.product.prodname_dotcom_the_website %}, puedes tener acceso a características diferentes cuando utilizas recursos que le pertenezcan a esa organización y cuando utilizas los que le pertenecen a tu cuenta personal. Para obtener más información, consulta la sección "[Tipos de cuentas de {% data variables.product.prodname_dotcom %}](/get-started/learning-about-github/types-of-github-accounts)".
-If you don't know whether an organization uses {% data variables.product.prodname_ghe_cloud %}, ask an organization owner. For more information, see "[Viewing people's roles in an organization](/account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/viewing-peoples-roles-in-an-organization)."
+If you don't know whether an organization uses {% data variables.product.prodname_ghe_cloud %}, ask an organization owner. Para obtener más información, consulta la sección "[Ver los roles de las personas en una organización](/account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/viewing-peoples-roles-in-an-organization)".
### {% data variables.product.prodname_ghe_server %}
@@ -49,7 +49,7 @@ In a wide browser window, the word "Enterprise" immediately follows the {% data
### {% data variables.product.prodname_ghe_managed %}
-If you access {% data variables.product.prodname_dotcom %} at `https://*.githubenterprise.com`, `https://*.github.us`, or `https://*.ghe.com`, you're using {% data variables.product.prodname_ghe_managed %}.
+Si accedes a {% data variables.product.prodname_dotcom %} a través de `https://*.githubenterprise.com`, `https://*.github.us`, o `https://*.ghe.com`, estás utilizando {% data variables.product.prodname_ghe_managed %}.
In a wide browser window, the words "{% data variables.product.prodname_ghe_managed %}" immediately follow the {% data variables.product.company_short %} logo in the header.
diff --git a/translations/es-ES/content/get-started/learning-about-github/types-of-github-accounts.md b/translations/es-ES/content/get-started/learning-about-github/types-of-github-accounts.md
index 80b8e01cae..8d1beb2a4a 100644
--- a/translations/es-ES/content/get-started/learning-about-github/types-of-github-accounts.md
+++ b/translations/es-ES/content/get-started/learning-about-github/types-of-github-accounts.md
@@ -84,6 +84,6 @@ Tu cuenta empresarial es una recolección de todas las organizaciones {% ifversi
## Leer más
{% ifversion fpt or ghec %}
-- "[Signing up for a new {% data variables.product.prodname_dotcom %} account](/articles/signing-up-for-a-new-github-account)"{% endif %}
+- "[Registrarse para obtener una cuenta nueva de {% data variables.product.prodname_dotcom %} ](/articles/signing-up-for-a-new-github-account)"{% endif %}
- "[Crear una cuenta de organización nueva](/articles/creating-a-new-organization-account)"
-- [Organizing people for successful collaboration](https://vimeo.com/333786093) video in {% data variables.product.company_short %} Resources
+- Video de [Organizar a las personas para tener una colaboración exitosa](https://vimeo.com/333786093) en los Recursos de {% data variables.product.company_short %}
diff --git a/translations/es-ES/content/get-started/quickstart/contributing-to-projects.md b/translations/es-ES/content/get-started/quickstart/contributing-to-projects.md
index 8371643a06..6a509f18f6 100644
--- a/translations/es-ES/content/get-started/quickstart/contributing-to-projects.md
+++ b/translations/es-ES/content/get-started/quickstart/contributing-to-projects.md
@@ -22,7 +22,7 @@ Creating a "fork" is producing a personal copy of someone else's project. Forks
## Bifurcar un repositorio
-This tutorial uses [the Spoon-Knife project](https://github.com/octocat/Spoon-Knife), a test repository that's hosted on {% data variables.product.prodname_dotcom_the_website %} that lets you test the fork and pull request workflow.
+Este tutorial utiliza [el proyecto Spoon-Knife](https://github.com/octocat/Spoon-Knife), un repositorio de prueba que se hospeda en {% data variables.product.prodname_dotcom_the_website %} y te permite probar el flujo de trabajo de la bifurcación y solicitud de cambios.
1. Navigate to the `Spoon-Knife` project at https://github.com/octocat/Spoon-Knife.
2. Click **Fork**. 
@@ -98,7 +98,7 @@ git commit -m "a short description of the change"
```shell
git add .
-git commit -m "a short description of the change"
+git commit -m "una descripción corta del cambio"
```
{% endcli %}
@@ -131,7 +131,7 @@ git push
{% desktop %}
-For more information about how to push changes in {% data variables.product.prodname_desktop %}, see "[Pushing changes to GitHub](/desktop/contributing-and-collaborating-using-github-desktop/making-changes-in-a-branch/pushing-changes-to-github)."
+Para obtener más información sobre cómo subir cambios a {% data variables.product.prodname_desktop %}, consulta la sección "[Subir cambios a GtiHub](/desktop/contributing-and-collaborating-using-github-desktop/making-changes-in-a-branch/pushing-changes-to-github)".
{% enddesktop %}
@@ -151,4 +151,4 @@ Pull Requests are an area for discussion. In this case, the Octocat is very busy
## Finding projects
-You've successfully forked and contributed back to a repository. Go forth, and contribute some more!{% ifversion fpt %} For more information, see "[Finding ways to contribute to open source on GitHub](/get-started/exploring-projects-on-github/finding-ways-to-contribute-to-open-source-on-github)."{% endif %}
+You've successfully forked and contributed back to a repository. ¡Ve y contribuye más!{% ifversion fpt %} Para obtener más información, consulta la sección "[Encontrar formas de contribuir con el código abierto en GitHub](/get-started/exploring-projects-on-github/finding-ways-to-contribute-to-open-source-on-github)".{% endif %}
diff --git a/translations/es-ES/content/get-started/quickstart/hello-world.md b/translations/es-ES/content/get-started/quickstart/hello-world.md
index 5600d95ed0..467ac3a7d1 100644
--- a/translations/es-ES/content/get-started/quickstart/hello-world.md
+++ b/translations/es-ES/content/get-started/quickstart/hello-world.md
@@ -1,6 +1,6 @@
---
title: Hola Mundo
-intro: 'Follow this Hello World exercise to get started with {% data variables.product.product_name %}.'
+intro: 'Sigue este ejercicio de "Hello World" para iniciar con {% data variables.product.product_name %}.'
versions:
fpt: '*'
ghes: '*'
@@ -15,130 +15,130 @@ miniTocMaxHeadingLevel: 3
## Introducción
-{% data variables.product.product_name %} is a code hosting platform for version control and collaboration. It lets you and others work together on projects from anywhere.
+{% data variables.product.product_name %} es una plataforma de hospedaje de código para el control de versiones y la colaboración. Este permite que tú y otras personas trabajen juntos en proyectos desde donde sea.
-This tutorial teaches you {% data variables.product.product_name %} essentials like repositories, branches, commits, and pull requests. You'll create your own Hello World repository and learn {% data variables.product.product_name %}'s pull request workflow, a popular way to create and review code.
+Este tutorial te enseña lo esencial de {% data variables.product.product_name %}, como los repositorios, ramas, confirmaciones y solicitudes de cambio. Crearás tu propio repositorio de "Hello World" y aprenderás el flujo de trabajo de las solicitudes de cambio de {% data variables.product.product_name %}, una forma popular de crear y revisar código.
-In this quickstart guide, you will:
+En esta guía de inicio rápido:
-* Create and use a repository
-* Start and manage a new branch
-* Make changes to a file and push them to {% data variables.product.product_name %} as commits
-* Open and merge a pull request
+* Crearás y utilizarás un repositorio
+* Iniciarás y administrarás una rama nueva
+* Harás cambios a un archivo y los subirás a {% data variables.product.product_name %} como confirmaciones
+* Abrirás y fusionarás una solicitud de cambios
-To complete this tutorial, you need a [{% data variables.product.product_name %} account](http://github.com) and Internet access. You don't need to know how to code, use the command line, or install Git (the version control software that {% data variables.product.product_name %} is built on).
+Para completar este tutorial, necesitarás una [cuenta de {% data variables.product.product_name %}](http://github.com) y acceso a internet. No necesitas saber cómo codificar, utilizar la línea de comandos o instalar Git (el software de control de versiones en el que está compilado {% data variables.product.product_name %}).
## Crear un repositorio
-A repository is usually used to organize a single project. Repositories can contain folders and files, images, videos, spreadsheets, and data sets -- anything your project needs. Often, repositories include a `README` file, a file with information about your project. {% data variables.product.product_name %} makes it easy to add one at the same time you create your new repository. It also offers other common options such as a license file.
+Un repositorio se utiliza a menudo para organizar un solo proyecto. Los repositorios pueden contener carpetas y archivos, imágenes, videos, hojas de cálculo y conjuntos de datos; todo lo que necesita tu proyecto. A menudo, los repositorios incluyen un archivo de `README`, que es un archivo con información sobre tu proyecto. {% data variables.product.product_name %} facilita agregar uno de ellos al mismo tiempo que creas tu repositorio nuevo. También ofrece otras opciones comunes, tales como un archivo de licencia.
-Your `hello-world` repository can be a place where you store ideas, resources, or even share and discuss things with others.
+Tu repositorio de `hello-world` puede ser un lugar donde almacenes ideas, recursos o incluso compartas y debatas cosas con los demás.
{% data reusables.repositories.create_new %}
-1. In the **Repository name** box, enter `hello-world`.
-2. In the **Description** box, write a short description.
-3. Select **Add a README file**.
+1. En la caja de **Nombre de repositorio**, ingresa `hello-world`.
+2. En la caja de **Descripción**, escribe una descripción corta.
+3. Selecciona **Agregar un archivo README**.
4. Haz clic en **Crear repositorio**.
- 
+ 
## Cómo crear una rama
-Branching lets you have different versions of a repository at one time.
+La ramificación te permite tener versiones diferentes de un repositorio en una ocasión.
-By default, your repository has one branch named `main` that is considered to be the definitive branch. You can use branches to experiment and make edits before committing them to `main`.
+Predeterminadamente, tu repositorio tiene una rama llamada `main`, la cual se considera como la rama definitiva. Puedes utilizar ramas para experimentar y hacer ediciones antes de confirmarlas a `main`.
-When you create a branch off the `main` branch, you're making a copy, or snapshot, of `main` as it was at that point in time. If someone else made changes to the `main` branch while you were working on your branch, you could pull in those updates.
+Cuando creas una rama fuera de la de `main`, estás haciendo una copia o captura de pantalla de `main` como lo fue en ese momento. Si alguien más hizo cambios en la rama `main` mientras estuviste trabajando en tu rama, podrías extraer esas actualizaciones.
-This diagram shows:
+Este diagrama muestra:
-* The `main` branch
-* A new branch called `feature`
-* The journey that `feature` takes before it's merged into `main`
+* La rama `main`
+* Una rama nueva llamada `feature`
+* El viaje que hace `feature` antes de fusionarse en `main`
-
+
-Have you ever saved different versions of a file? Something like:
+¿Alguna vez has guardado versiones distintas de un archivo? Algo como:
* `story.txt`
* `story-joe-edit.txt`
* `story-joe-edit-reviewed.txt`
-Branches accomplish similar goals in {% data variables.product.product_name %} repositories.
+Las ramas logran metas similares en los repositorios de {% data variables.product.product_name %}.
-Here at {% data variables.product.product_name %}, our developers, writers, and designers use branches for keeping bug fixes and feature work separate from our `main` (production) branch. When a change is ready, they merge their branch into `main`.
+En {% data variables.product.product_name %}, nuestros desarrolladores, escritores y diseñadores utilizan ramas para mantener las correcciones de errores y el trabajo de las características separados de nuestra rama `main` (productiva). Cuando un cambio está listo, se fusiona su rama en `main`.
### Crear una rama
-1. Click the **Code** tab of your `hello-world` repository.
-2. Click the drop down at the top of the file list that says **main**. 
-4. Type a branch name, `readme-edits`, into the text box.
-5. Click **Create branch: readme-edits from main**.
+1. Haz clic en la pestaña de **Código** de tu repositorio `hello-world`.
+2. Haz clic ene l menú desplegable en la parte superior del archivo que dice **main**. 
+4. Teclea un nombre de rama, `readme-edits`, en la caja de texto.
+5. Haz clic en **Crear rama: readme-dits desde main**.
-
+
-Now you have two branches, `main` and `readme-edits`. Right now, they look exactly the same. Next you'll add changes to the new branch.
+Ahora tienes dos ramas, `main` y `readme-edits`. Ahora mismo, se ven idénticas. A continuación, agregarás cambios a la rama nueva.
-## Making and committing changes
+## Hacer y confirmar cambios
-When you created a new branch in the previous step, {% data variables.product.product_name %} brought you to the code page for your new `readme-edits` branch, which is a copy of `main`.
+Cuando creaste una rama nueva en el paso anterior, {% data variables.product.product_name %} te llevó a la página de código de tu rama `readme-edits` nueva, la cual es una copia de `main`.
-You can make and save changes to the files in your repository. On {% data variables.product.product_name %}, saved changes are called commits. Each commit has an associated commit message, which is a description explaining why a particular change was made. Commit messages capture the history of your changes so that other contributors can understand what you’ve done and why.
+Puedes hacer y guardar cambios a los archivos de tu repositorio. En {% data variables.product.product_name %}, los cambios guardados se llaman confirmaciones. Cada confirmación tiene un mensaje de confirmación asociado, el cual es una descripción que explica por qué se realizó algún cambio en particular. Los mensajes de confirmación capturan la historia de tus cambios para que otros contribuyentes puedan entender lo que hiciste y por qué.
-1. Click the `README.md` file.
-1. Click {% octicon "pencil" aria-label="The edit icon" %} to edit the file.
-3. In the editor, write a bit about yourself.
-4. In the **Commit changes** box, write a commit message that describes your changes.
+1. Haz clic en el archivo `README.md`.
+1. Haz clic en {% octicon "pencil" aria-label="The edit icon" %} para editar el archivo.
+3. En el editor, escribe un poco sobre ti mismo.
+4. En la caja de **Cambios de confirmación**, escribe un mensaje de confirmación que describa tus cambios.
5. Haz clic en **Commit changes** (Confirmar cambios).
- 
+ 
-These changes will be made only to the README file on your `readme-edits` branch, so now this branch contains content that's different from `main`.
+Estos cambios se harán únicamente al archivo README en tu rama `readme-edits`, así que ahora esta rama tiene contenido que es diferente de la de `main`.
## Abrir una solicitud de extracción
-Now that you have changes in a branch off of `main`, you can open a pull request.
+Ahora que tienes cambios en una rama furea de la de `main`, puedes abrir una solicitud de cambios.
-Pull requests are the heart of collaboration on {% data variables.product.product_name %}. When you open a pull request, you're proposing your changes and requesting that someone review and pull in your contribution and merge them into their branch. Pull requests show diffs, or differences, of the content from both branches. The changes, additions, and subtractions are shown in different colors.
+Las solicitudes de cambios son el núcleo de la colaboración en {% data variables.product.product_name %}. Cuando abres una solicitud de cambios, estás proponiendo tus cambios y solicitando que alguien revise e integre tu contribución y la fusione en su rama. Las solicitudes de cambio muestran diffs o diferencias del contenido de ambas ramas. Los cambios, adiciones y sustracciones se muestran en varios colores.
-As soon as you make a commit, you can open a pull request and start a discussion, even before the code is finished.
+Tan pronto hagas una confirmación, puedes abrir una solicitud de cambios y comenzar un debate, incluso antes de que se termine el código.
-By using {% data variables.product.product_name %}'s `@mention` feature in your pull request message, you can ask for feedback from specific people or teams, whether they're down the hall or 10 time zones away.
+Si utilizas la característica de `@mention` de {% data variables.product.product_name %} en tu mensaje de solicitud de cambios, puedes pedir retroalimentación de una persona o equipo específico, ya sea que estén al fondo del pasillo o a 10 zonas horarias de distancia.
-You can even open pull requests in your own repository and merge them yourself. It's a great way to learn the {% data variables.product.product_name %} flow before working on larger projects.
+Incluso puedes abrir solicitudes de cambio en tu propio repositorio y fusionarlas tú mismo. Es una forma genial para aprenderse el flujo de {% data variables.product.product_name %} antes de trabajar en proyectos más grandes.
-1. Click the **Pull requests** tab of your `hello-world` repository.
-2. Click **New pull request**
-3. In the **Example Comparisons** box, select the branch you made, `readme-edits`, to compare with `main` (the original).
-4. Look over your changes in the diffs on the Compare page, make sure they're what you want to submit.
+1. Haz clic en la pestaña de **Solicitudes de cambios** de tu repositorio `hello-world`.
+2. Haz clic en **Solicitud de cambios nueva**
+3. En la caja de **Comparaciones de ejemplo**, selecciona la rama que hiciste, `readme-edits`, para compararla con `main` (la original).
+4. Mira tus cambios en los diffs en la página de Comparar, asegúrate que son lo que quieres enviar.
- 
+ 
5. Haz clic en **Create Pull Request** (Crear solicitud de extracción).
-6. Give your pull request a title and write a brief description of your changes. You can include emojis and drag and drop images and gifs.
+6. Dale un título a tu solicitud de cambios y escribe una descripción breve de estos. Puedes incluir emojis y arrastrar y soltar imágenes y gifs.
7. Haz clic en **Create Pull Request** (Crear solicitud de extracción).
-Your collaborators can now review your edits and make suggestions.
+Tus colaboradores ahora pueden revisar tus ediciones y hacer sugerencias.
-## Merging your pull request
+## Fusionar tu solicitud de cambios
-In this final step, you will merge your `readme-edits` branch into the `main` branch.
+En este paso final, fusionarás tu rama de `readme-edits` en la rama `main`.
-1. Click **Merge pull request** to merge the changes into `main`.
+1. Haz clic en **Fusionar solicitud de cambios** para fusionar los cambios en `main`.
2. Haz clic en **Confirmar fusión**.
-3. Go ahead and delete the branch, since its changes have been incorporated, by clicking **Delete branch**.
+3. Ve y borra la rama, ya que estos cambios se incorporaron, haciendo clic en **Borrar rama**.
## Pasos siguientes
-By completing this tutorial, you've learned to create a project and make a pull request on {% data variables.product.product_name %}.
+Al haber completado este tutorial, aprendiste a crear un proyecto y hacer una solicitud de cambios en {% data variables.product.product_name %}.
-Here's what you accomplished in this tutorial:
+Esto es lo que lograste en este tutorial:
-* Created an open source repository
-* Started and managed a new branch
-* Changed a file and committed those changes to {% data variables.product.product_name %}
-* Opened and merged a pull request
+* Creaste y abriste un repositorio de código fuente
+* Iniciaste y administraste una rama nueva
+* Cambiaste un archivo y confirmaste esos cambios en {% data variables.product.product_name %}
+* Abriste y fusionaste una solicitud de cambios
-Take a look at your {% data variables.product.product_name %} profile and you'll see your work reflected on your contribution graph.
+Echa un vistazo a tu perfil de {% data variables.product.product_name %} y verás tu trabajo reflejado en tu gráfica de contribuciones.
-For more information about the power of branches and pull requests, see "[GitHub flow](/get-started/quickstart/github-flow)." For more information about getting started with {% data variables.product.product_name %}, see the other guides in the [getting started quickstart](/get-started/quickstart).
+Para obtener más información sobre el poder de las ramas y las solicitudes de cambios, consulta la sección "[Flujo de GitHub](/get-started/quickstart/github-flow)". Para obtener más información sobre cómo iniciar con {% data variables.product.product_name %}, consulta el resto de las guías en la [guía rápida de inicio](/get-started/quickstart).
diff --git a/translations/es-ES/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md b/translations/es-ES/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md
index b5b5202043..a4098763ca 100644
--- a/translations/es-ES/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md
+++ b/translations/es-ES/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md
@@ -62,5 +62,5 @@ Si necesitas más tiempo para evaluar {% data variables.product.prodname_ghe_man
## Leer más
-- "[Enabling {% data variables.product.prodname_advanced_security %} features on {% data variables.product.prodname_ghe_managed %}](/github/getting-started-with-github/about-github-advanced-security#enabling-advanced-security-features-on-github-ae)"
+- "[Habilita las características de la {% data variables.product.prodname_advanced_security %} en {% data variables.product.prodname_ghe_managed %}](/github/getting-started-with-github/about-github-advanced-security#enabling-advanced-security-features-on-github-ae)"
- "[{% data variables.product.prodname_ghe_managed %} release notes](/github-ae@latest/admin/overview/github-ae-release-notes)"
diff --git a/translations/es-ES/content/get-started/using-git/about-git.md b/translations/es-ES/content/get-started/using-git/about-git.md
index ebbbcee959..b002b570a8 100644
--- a/translations/es-ES/content/get-started/using-git/about-git.md
+++ b/translations/es-ES/content/get-started/using-git/about-git.md
@@ -44,7 +44,7 @@ Through platforms like {% data variables.product.product_name %}, Git also provi
{% data variables.product.product_name %} hospeda repositorios de Git y proporciona a los desarrolladores las herramientas para generar un código mejor mediante características de línea de comandos, propuestas (debates en hilo), solicitudes de cambio, revisión de código o el uso de un conjunto de apps gratuitas y de pago en {% data variables.product.prodname_marketplace %}. Con las capas de colaboración tales como el flujo de {% data variables.product.product_name %}, una comunidad de 15 millones de desarrolladores y un ecosistema con cientos de integraciones, {% data variables.product.product_name %} cambia la forma en la que se crea el software.
-{% data variables.product.product_name %} builds collaboration directly into the development process. Work is organized into repositories where developers can outline requirements or direction and set expectations for team members. Then, using the {% data variables.product.product_name %} flow, developers simply create a branch to work on updates, commit changes to save them, open a pull request to propose and discuss changes, and merge pull requests once everyone is on the same page. Para obtener más información, consulta la sección "[Flujo de GitHub](/get-started/quickstart/github-flow)".
+{% data variables.product.product_name %} builds collaboration directly into the development process. Work is organized into repositories where developers can outline requirements or direction and set expectations for team members. Posteriormente, utilizando el flujo de {% data variables.product.product_name %}, los desarrolladores simplemente crean una rama para trabajar en las actualizaciones, confirmar cambios para guardarlos, abrir una solicitud de cambios para proponerlos y debatirlos y fusionar solicitudes de cambio una vez que todos estén de acuerdo. Para obtener más información, consulta la sección "[Flujo de GitHub](/get-started/quickstart/github-flow)".
## {% data variables.product.product_name %} and the command line
@@ -129,7 +129,7 @@ git push --set-upstream origin main
### Example: contribute to an existing branch on {% data variables.product.product_name %}
-This example assumes that you already have a project called `repo` on the machine and that a new branch has been pushed to {% data variables.product.product_name %} since the last time changes were made locally.
+Este ejemplo asumen que ya tienes un proyecto llamado `repo` en la máquina y que se subió una rama nueva a {% data variables.product.product_name %} desde la última vez que se realizaron los cambios localmente.
```bash
# change into the `repo` directory
diff --git a/translations/es-ES/content/get-started/using-github/keyboard-shortcuts.md b/translations/es-ES/content/get-started/using-github/keyboard-shortcuts.md
index 2265ca6c86..c7993e58b9 100644
--- a/translations/es-ES/content/get-started/using-github/keyboard-shortcuts.md
+++ b/translations/es-ES/content/get-started/using-github/keyboard-shortcuts.md
@@ -94,7 +94,7 @@ For more keyboard shortcuts, see the [CodeMirror documentation](https://codemirr
| control shift p or command shift p| Toggles between the **Write** and **Preview** comment tabs{% ifversion fpt or ghae or ghes > 3.2 or ghec %}
| control shift 7 or command shift 7 | Inserts Markdown formatting for an ordered list
| control shift 8 or command shift 8 | Inserts Markdown formatting for an unordered list{% endif %}
-| control enter | Submits a comment
+| control enter or command enter | Submits a comment
| control . and then control [saved reply number] | Opens saved replies menu and then autofills comment field with a saved reply. For more information, see "[About saved replies](/articles/about-saved-replies)."{% ifversion fpt or ghae or ghes > 3.2 or ghec %}
| control shift . or command shift. | Inserts Markdown formatting for a quote{% endif %}{% ifversion fpt or ghec %}
|control g or command g | Insert a suggestion. For more information, see "[Reviewing proposed changes in a pull request](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request)." |{% endif %}
diff --git a/translations/es-ES/content/github/copilot/github-copilot-telemetry-terms.md b/translations/es-ES/content/github/copilot/github-copilot-telemetry-terms.md
index ea963bfe6b..d505aabba3 100644
--- a/translations/es-ES/content/github/copilot/github-copilot-telemetry-terms.md
+++ b/translations/es-ES/content/github/copilot/github-copilot-telemetry-terms.md
@@ -1,5 +1,5 @@
---
-title: GitHub Copilot Telemetry Terms
+title: Condiciones de Telemetría del Copiloto de GitHub
intro: 'El aceptar la telemetría adicional que se describe a continuación es una condición para unirse a la lista de espera para la vista previa técnica del {% data variables.product.prodname_copilot %} y para utilizar el {% data variables.product.prodname_copilot %} durante ella.'
redirect_from:
- /early-access/github/copilot/telemetry-terms
@@ -11,7 +11,7 @@ effectiveDate: '2021-10-04'
## Telemetría adicional
-If you use {% data variables.product.prodname_copilot %}, the {% data variables.product.prodname_copilot %} extension/plugin will collect usage information about events generated by interacting with the integrated development environment (IDE). These events include {% data variables.product.prodname_copilot %} performance, features used, and suggestions accepted, modified and accepted, or dismissed. This information may include personal data, including your User Personal Information, as defined in the [GitHub Privacy Statement](/github/site-policy/github-privacy-statement).
+Si utilizas el {% data variables.product.prodname_copilot %}, la extensión/complemento del {% data variables.product.prodname_copilot %} recolectará la información de uso sobre los eventos que se generan al interactuar con el ambiente de desarrollo integrado (IDE). Estos eventos incluyen el rendimiento del {% data variables.product.prodname_copilot %}, las características utilizadas y las sugerencias que se aceptan, modifican o aceptan; o descartan. Esta información podría incluir datos personales, incluyendo tu información personal de usuario, de acuerdo con lo definido en la [Declaración de Privacidad de GitHub](/github/site-policy/github-privacy-statement).
-This usage information is used by {% data variables.product.company_short %}, and shared with Microsoft and OpenAI, to develop and improve the extension/plugin and related products. OpenAI también utiliza esta información de uso para llevar a cabo otros servicios que se relacionan con el {% data variables.product.prodname_copilot %}. Por ejemplo, cuando editas archivos con la extensión/plugin del {% data variables.product.prodname_copilot %} habilitada, los extractos de contenido de archivo, las sugerencias y cualquier modificación a las sugerencias se compartirá con {% data variables.product.company_short %}, Microsoft y OpenAI y se utilizará para propósitos de diagnóstico para mejorar las sugerencias y los productos relacionados. El {% data variables.product.prodname_copilot %} depende del contenido de archivo para su contexto, tanto en el archivo que estás editando como potencialmente en otros archivos que están abiertos en la misma instancia de IDE. Cuando estás utilizando el {% data variables.product.prodname_copilot %}, este también podría recolectar las URL de los repositorios o rutas de archivo de los archivos relevantes. El {% data variables.product.prodname_copilot %} no utiliza estas URL, rutas de archivo o fragmentos de código que se recolectan en tu telemetría como sugerencias para otros usuarios del {% data variables.product.prodname_copilot %}. Esta información se maneja como confidencial y es el acceso a ella es conforme sea necesario. Se te prohíbe recolectar datos de telemetría sobre otros usuarios del {% data variables.product.prodname_copilot %} desde la extensión/aditamento del {% data variables.product.prodname_copilot %}. Para obtener más detalles sobre la telemetría del {% data variables.product.prodname_copilot %}, por favor, consulta la sección "[Acerca de la telemetría del {% data variables.product.prodname_copilot %}](/github/copilot/about-github-copilot-telemetry)". Puedes revocar tu consentimiento de las operaciones sobre el procesamiento de datos personales y la telemetría que se describen en este párrafo si contactas a GitHub y solicitas la eliminación de la vista previa técnica.
+{% data variables.product.company_short %} utiliza esta información de uso y la comparte con Microsoft y con OpenAI para desarrollar y mejorar la extensión/complemento y los productos relacionados. OpenAI también utiliza esta información de uso para llevar a cabo otros servicios que se relacionan con el {% data variables.product.prodname_copilot %}. Por ejemplo, cuando editas archivos con la extensión/plugin del {% data variables.product.prodname_copilot %} habilitada, los extractos de contenido de archivo, las sugerencias y cualquier modificación a las sugerencias se compartirá con {% data variables.product.company_short %}, Microsoft y OpenAI y se utilizará para propósitos de diagnóstico para mejorar las sugerencias y los productos relacionados. El {% data variables.product.prodname_copilot %} depende del contenido de archivo para su contexto, tanto en el archivo que estás editando como potencialmente en otros archivos que están abiertos en la misma instancia de IDE. Cuando estás utilizando el {% data variables.product.prodname_copilot %}, este también podría recolectar las URL de los repositorios o rutas de archivo de los archivos relevantes. El {% data variables.product.prodname_copilot %} no utiliza estas URL, rutas de archivo o fragmentos de código que se recolectan en tu telemetría como sugerencias para otros usuarios del {% data variables.product.prodname_copilot %}. Esta información se maneja como confidencial y es el acceso a ella es conforme sea necesario. Se te prohíbe recolectar datos de telemetría sobre otros usuarios del {% data variables.product.prodname_copilot %} desde la extensión/aditamento del {% data variables.product.prodname_copilot %}. Para obtener más detalles sobre la telemetría del {% data variables.product.prodname_copilot %}, por favor, consulta la sección "[Acerca de la telemetría del {% data variables.product.prodname_copilot %}](/github/copilot/about-github-copilot-telemetry)". Puedes revocar tu consentimiento de las operaciones sobre el procesamiento de datos personales y la telemetría que se describen en este párrafo si contactas a GitHub y solicitas la eliminación de la vista previa técnica.
diff --git a/translations/es-ES/content/github/site-policy/github-terms-for-additional-products-and-features.md b/translations/es-ES/content/github/site-policy/github-terms-for-additional-products-and-features.md
index 02ffbb9d03..609d46e161 100644
--- a/translations/es-ES/content/github/site-policy/github-terms-for-additional-products-and-features.md
+++ b/translations/es-ES/content/github/site-policy/github-terms-for-additional-products-and-features.md
@@ -20,7 +20,7 @@ By using the Additional Products and Features, you also agree to the applicable
- **GitHub Enterprise Server** users may have access to the following Additional Products and Features: Actions, Advanced Security, Advisory Database, Connect, Dependabot Preview, GitHub Enterprise Importer, Learning Lab, Packages, Pages, and SQL Server Images.
-- **GitHub AE** users may have access to the following Additional Products and Features: Actions, Advanced Security, Advisory Database, {% ifversion ghae %}Connect, {% endif %}Dependabot Preview, GitHub Enterprise Importer, Packages and Pages.
+- **GitHub AE** users may have access to the following Additional Products and Features: Actions, Advanced Security, Advisory Database, Connect, Dependabot Preview, GitHub Enterprise Importer, Packages and Pages.
## Actions
GitHub Actions enables you to create custom software development lifecycle workflows directly in your GitHub repository. Actions is billed on a usage basis. The [Actions documentation](/actions) includes details, including compute and storage quantities (depending on your Account plan), and how to monitor your Actions minutes usage and set usage limits.
@@ -68,7 +68,7 @@ Codespaces allows you to load extensions from the Microsoft Visual Studio Market
The generally available version of Codespaces is not currently available for U.S. government customers. U.S. government customers may continue to use the Codespaces Beta Preview under separate terms. See [Beta Preview terms](/github/site-policy/github-terms-of-service#j-beta-previews).
## Connect
-With GitHub Connect, you can share certain features and data between your GitHub Enterprise Server {% ifversion ghae %}or GitHub AE {% endif %}instance and your GitHub Enterprise Cloud organization or enterprise account on GitHub.com. In order to enable GitHub Connect, you must have at least one (1) account on GitHub Enterprise Cloud or GitHub.com, and one (1) licensed instance of GitHub Enterprise Server{% ifversion ghae %} or GitHub AE{% endif %}. Your use of GitHub Enterprise Cloud or GitHub.com through Connect is governed by the terms under which you license GitHub Enterprise Cloud or GitHub.com. Use of Personal Data is governed by the [GitHub Privacy Statement](/github/site-policy/github-privacy-statement).
+With GitHub Connect, you can share certain features and data between your GitHub Enterprise Server or GitHub AE instance and your GitHub Enterprise Cloud organization or enterprise account on GitHub.com. In order to enable GitHub Connect, you must have at least one (1) account on GitHub Enterprise Cloud or GitHub.com, and one (1) licensed instance of GitHub Enterprise Server or GitHub AE. Your use of GitHub Enterprise Cloud or GitHub.com through Connect is governed by the terms under which you license GitHub Enterprise Cloud or GitHub.com. Use of Personal Data is governed by the [GitHub Privacy Statement](/github/site-policy/github-privacy-statement).
## GitHub Enterprise Importer
Importer is a framework for exporting data from other sources to be imported to the GitHub platform. Importer is provided “AS-IS”.
diff --git a/translations/es-ES/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md b/translations/es-ES/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md
index 7d547f5f81..d13b66f0c8 100644
--- a/translations/es-ES/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md
+++ b/translations/es-ES/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md
@@ -43,6 +43,9 @@ Archivos compatibles:
* PNG (*.png*)
* GIF (*.gif*)
* JPEG (*.jpg*)
+{%- if svg-support %}
+* SVG (*.svg*)
+{%- endif %}
* Archivos de registro (*.log*)
* Documentos de Microsoft Word (*.docx*), Powerpoint (*.pptx*) y Excel (*.xlsx*)
* Archivos de texto (*.txt*)
diff --git a/translations/es-ES/content/graphql/guides/migrating-graphql-global-node-ids.md b/translations/es-ES/content/graphql/guides/migrating-graphql-global-node-ids.md
index f9bf509313..ea69ab45f0 100644
--- a/translations/es-ES/content/graphql/guides/migrating-graphql-global-node-ids.md
+++ b/translations/es-ES/content/graphql/guides/migrating-graphql-global-node-ids.md
@@ -65,4 +65,4 @@ Note that setting `X-Github-Next-Global-ID` to `1` will affect the return value
## Compartir retroalimentación
-If you have any concerns about the rollout of this change impacting your app, please [contact {% data variables.product.product_name %}](https://support.github.com/contact) and include information such as your app name so that we can better assist you.
+Si te preocupa que la implementación de este cambio impacte tu app, por favor, [contacta a {% data variables.product.product_name %}](https://support.github.com/contact) e incluye la información del nombre de tu app para que te podamos apoyarte mejor.
diff --git a/translations/es-ES/content/issues/index.md b/translations/es-ES/content/issues/index.md
index c3008ad40f..a788404d48 100644
--- a/translations/es-ES/content/issues/index.md
+++ b/translations/es-ES/content/issues/index.md
@@ -25,8 +25,14 @@ featuredLinks:
- /issues/using-labels-and-milestones-to-track-work/managing-labels
- /github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests
- '{% ifversion ghes or ghae %}/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards{% endif %}'
-changelog:
- label: issues
+ videos:
+ - title: Planning at scale with Issues – Mario Rodriguez
+ href: 'https://www.youtube-nocookie.com/embed/ha1KHcPMAEk'
+ - title: Planning at GitHub (Projects + Issues) – Matt Butler
+ href: 'https://www.youtube-nocookie.com/embed/HwpVvDURHKw'
+ - title: Issue Forms for open source – Luke Hefson
+ href: 'https://www.youtube-nocookie.com/embed/2Yh8ueUE0oY'
+ videosHeading: GitHub Universe 2021 videos
layout: product-landing
beta_product: false
versions:
diff --git a/translations/es-ES/content/issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests.md b/translations/es-ES/content/issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests.md
index 81f89fc1f3..cf85394183 100644
--- a/translations/es-ES/content/issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests.md
+++ b/translations/es-ES/content/issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests.md
@@ -107,7 +107,7 @@ You can filter a repository's list of pull requests to find:
- Pull requests that [require a review](/github/administering-a-repository/about-protected-branches#require-pull-request-reviews-before-merging) before they can be merged
- Pull requests that a reviewer has approved
- Pull requests in which a reviewer has asked for changes
-- Pull requests that you have reviewed{% ifversion fpt or ghae or ghes > 3.2 or ghec %}
+- Pull requests that you have reviewed{% ifversion fpt or ghae-issue-5181 or ghes > 3.2 or ghec %}
- Pull requests that someone has asked you directly to review{% endif %}
- Pull requests that [someone has asked you, or a team you're a member of, to review](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review)
@@ -191,7 +191,7 @@ For pull requests, you can also use search to:
- Filter pull requests that a reviewer has approved: `state:open type:pr review:approved`
- Filter pull requests in which a reviewer has asked for changes: `state:open type:pr review:changes_requested`
- Filter pull requests by [reviewer](/articles/about-pull-request-reviews/): `state:open type:pr reviewed-by:octocat`
-- Filter pull requests by the specific user [requested for review](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review): `state:open type:pr review-requested:octocat`{% ifversion fpt or ghae or ghes > 3.2 or ghec %}
+- Filter pull requests by the specific user [requested for review](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review): `state:open type:pr review-requested:octocat`{% ifversion fpt or ghae-issue-5181 or ghes > 3.2 or ghec %}
- Filter pull requests that someone has asked you directly to review: `state:open type:pr user-review-requested:@me`{% endif %}
- Filter pull requests by the team requested for review: `state:open type:pr team-review-requested:github/atom`{% ifversion fpt or ghes or ghae or ghec %}
- Filter for pull requests that are linked to an issue that the pull request may close: `linked:issue`{% endif %}
diff --git a/translations/es-ES/content/issues/trying-out-the-new-projects-experience/customizing-your-project-views.md b/translations/es-ES/content/issues/trying-out-the-new-projects-experience/customizing-your-project-views.md
index 31ed58b0e6..0cc8d83048 100644
--- a/translations/es-ES/content/issues/trying-out-the-new-projects-experience/customizing-your-project-views.md
+++ b/translations/es-ES/content/issues/trying-out-the-new-projects-experience/customizing-your-project-views.md
@@ -111,26 +111,26 @@ Sigue pasos similares para eliminar un agrupamiento.
Como alternativa, haz clic en {% octicon "triangle-down" aria-label="the drop-down icon" %} junto al nombre de vista y luego en el elemento de menú que indica el agrupamiento actual.
-## Setting the column field in board layout
+## Configurar el campo de columna en el diseño del tablero
-In the board layout, you choose any single select or iteration field for your columns. If you drag an item to a new column, the value of that column is applied to the dragged item. For example, if you use the "Status" field for your board columns and then drag an item with a status of `In progress` to the `Done` column, the status of the item will switch to `Done`.
+En el diseño de tablero, puedes elegir cualquier campo simple o de iteración para tus columnas. Si arrastras a un elemento a una columna nueva, el valor de dicha columna se aplicará al elemento que arrastraste. Por ejemplo, si utilizas el campo "Estado" para tus columnas de tablero y luego arrastras un elemento con un estado de `In progress` a la columna `Done`, el estado del elemento se cambiará a `Done`.
1. {% data reusables.projects.open-command-palette %}
-1. Start typing "Column field by" or the name of the field you want to use for your columns.
-1. Elige el comando requerido. For example, **Column field by: Status**.
+1. Comienza a teclear "Column field by" o el nombre del campo que quieras utilizar para tus columnas.
+1. Elige el comando requerido. Por ejemplo, **Column field by: Status**.
-Alternatively, click {% octicon "triangle-down" aria-label="the drop-down icon" %} next to the board view that you want to modify and click {% octicon "columns" aria-label="the column icon" %} **Column field**. Then select the field that you want to use for the board columns.
+Como alternativa, haz clic en el {% octicon "triangle-down" aria-label="the drop-down icon" %} juento a la vista de tablero que quieras modificar y haz clic en el **campo de columna** {% octicon "columns" aria-label="the column icon" %}. Posteriormente, selecciona el campo que quieras utilizar para las columnas del tablero.
-## Filtering items
+## Filtrar elementos
-Click {% octicon "filter" aria-label="the filter icon" %} at the top of the table to show the "Filter by keyword or by field" bar. Comienza a teclear el nombre de campo y valor por el cuál quieras filtrar. Conforme teclees, se mostrarán los posibles valores.
+Haz clic en el {% octicon "filter" aria-label="the filter icon" %} en la parte superior de la tabla para mostrar la barra de "Filtrar por palabra clave o por campo". Comienza a teclear el nombre de campo y valor por el cuál quieras filtrar. Conforme teclees, se mostrarán los posibles valores.
- Para filtrar valores múltiples, sepáralos con una coma. Por ejemplo `label:"good first issue",bug` listará las propuestas con una etiqueta de `good first issue` o de `bug`.
- Para filtrar la ausencia de un valor específico, coloca `-` antes de tu filtro. Por ejemplo, `-label:"bug"` mostrará solo elementos que no tengan la etiqueta `bug`.
- Para filtrar de acuerdo a la ausencia de todos los valores, ingresa `no:` seguido del nombre del campo. Por ejemplo, `no:assignee` solo mostrará los elementos que no tengan un asignado.
- Para filtrar por estado, ingresa `is:`. Por ejemplo, `is: issue` o `is:open`.
- Separa los filtros múltiples con un espacio. Por ejemplo, `status:"In progress" -label:"bug" no:assignee` solo mostrará los elementos que tengan un estado de `In progress`, que no tengan la etiqueta `bug` y que no tengan un asignado.
-- To filter for the current iteration of an iteration field, use `@current`. For example, `sprint:@current`.
+- Para filtrar de acuerdo con la iteración actual de un campo de iteración, utiliza `@current`. Por ejemplo, `sprint:@current`.
Como alternativa, utiliza la paleta de comandos.
@@ -158,7 +158,7 @@ Para agregar una vista nueva:
Como alternativa, haz clic en {% octicon "plus" aria-label="the plus icon" %} **Vista nueva** junto a la vista que está más hacia la derecha.
-Alternatively, click {% octicon "triangle-down" aria-label="the drop-down icon" %} next to a view name and click **Duplicate view**.
+Como alternativa, haz clic en el {% octicon "triangle-down" aria-label="the drop-down icon" %} junto a un nombre de vista y luego en **Duplicar vista**.
La vista nueva se guarda automáticamente.
@@ -175,7 +175,7 @@ Para guardar la configuración actual de la vista para todos los miembros del pr
1. Comienza a teclear "Save view" o "Save changes to new view".
1. Elige el comando requerido.
-Alternatively, click {% octicon "triangle-down" aria-label="the drop-down icon" %} next to a view name and click **Save view** or **Save changes to new view**.
+Como alternativa, haz clic en el {% octicon "triangle-down" aria-label="the drop-down icon" %} junto a un nombre de vista y luego en **Guardar vista** o en **Guardar cambios en una vista nueva**.
## Reordenar las vistas guardadas
@@ -199,7 +199,7 @@ Para borrar una vista:
2. Comienza a teclear "Delete view".
3. Elige el comando requerido.
-Alternatively, click {% octicon "triangle-down" aria-label="the drop-down icon" %} next to a view name and click **Delete view**.
+Como alternativa, haz clic en el {% octicon "triangle-down" aria-label="the drop-down icon" %} junto a un nombre de vista y luego en **Borrar vista**.
## Leer más
diff --git a/translations/es-ES/content/issues/trying-out-the-new-projects-experience/managing-access-to-projects.md b/translations/es-ES/content/issues/trying-out-the-new-projects-experience/managing-access-to-projects.md
index e6b871496f..db7de448e6 100644
--- a/translations/es-ES/content/issues/trying-out-the-new-projects-experience/managing-access-to-projects.md
+++ b/translations/es-ES/content/issues/trying-out-the-new-projects-experience/managing-access-to-projects.md
@@ -31,8 +31,8 @@ The default base role is `write`, meaning that everyone in the organization can
1. Click **Manage access**.
2. Under **Base role**, select the default role.
- **No access**: Only organization owners and users granted individual access can see the project. Organization owners are also admins for the project.
- - **Read**: Everyone in the organization can see the project. Organization owners are also admins for the project.
- - **Write**: Everyone in the organization can see and edit the project. Organization owners are also admins for the project.
+ - **Read**: Everyone in the organization can see the project. Los propietarios de las organizaciones que también son administradores del proyecto.
+ - **Write**: Everyone in the organization can see and edit the project. Los propietarios de las organizaciones que también son administradores del proyecto.
- **Admin**: Everyone in the organization is an admin for the project.
### Managing access for teams and individual members of your organization
@@ -42,7 +42,7 @@ You can also add teams, and individual organization members, as collaborators. P
You can only invite an individual user to collaborate on your organization-level project if they are a member of the organization.
{% data reusables.projects.project-settings %}
-1. Click **Manage access**.
+1. Haz Clic en **Administrar el acceso**.
1. Under **Invite collaborators**, search for the team or organization member that you want to invite.
1. Select the role for the collaborator.
- **Read**: The team or individual can view the project.
@@ -53,7 +53,7 @@ You can only invite an individual user to collaborate on your organization-level
### Managing access of an existing collaborator on your project
{% data reusables.projects.project-settings %}
-1. Click **Manage access**.
+1. Haz Clic en **Administrar el acceso**.
1. Under **Manage access**, find the collaborator(s) whose permissions you want to modify.
You can use the **Type** and **Role** drop-down menus to filter the access list.
@@ -66,25 +66,25 @@ You can only invite an individual user to collaborate on your organization-level
{% note %}
-This only affects collaborators for your project, not for repositories in your project. To view an item on the project, someone must have the required permissions for the repository that the item belongs to. If your project includes items from a private repository, people who are not collaborators in the repository will not be able to view items from that repository. Para obtener más información, consulta las secciones "[Configurar la visibilidad de un repositorio](/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility)" y "[Administrar los equipos y personas con acceso a tu repositorio](/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-teams-and-people-with-access-to-your-repository)".
+This only affects collaborators for your project, not for repositories in your project. To view an item on the project, someone must have the required permissions for the repository that the item belongs to. Si tu proyecto incluye elementos de un repositorio privado, las personas que no sean colaboradores en el repositorio no podrán ver elementos de este. Para obtener más información, consulta las secciones "[Configurar la visibilidad de un repositorio](/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility)" y "[Administrar los equipos y personas con acceso a tu repositorio](/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-teams-and-people-with-access-to-your-repository)".
{% endnote %}
{% data reusables.projects.project-settings %}
-1. Click **Manage access**.
+1. Haz Clic en **Administrar el acceso**.
2. Under **Invite collaborators**, search for the user that you want to invite.
-3. Select the role for the collaborator.
+3. Selecciona el rola para el colaborador.
- **Read**: The individual can view the project.
- **Write**: The individual can view and edit the project.
- **Admin**: The individual can view, edit, and add new collaborators to the project.
-4. Click **Invite**.
+4. Haz clic en **Invitar**.
### Managing access of an existing collaborator on your project
{% data reusables.projects.project-settings %}
-1. Click **Manage access**.
-1. Under **Manage access**, find the collaborator(s) whose permissions you want to modify.
+1. Haz Clic en **Administrar el acceso**.
+1. Debajo de **Administrar acceso**, encuentra al(los) colaborador(es) cuyos permisos quieras modificar.
You can use the **Role** drop-down menu to filter the access list.
-1. Edit the role for the collaborator(s) or click {% octicon "trash" aria-label="the trash icon" %} to remove the collaborator(s).
+1. Edita el rol para el(los) colaborador(es) o haz clic en{% octicon "trash" aria-label="the trash icon" %} para eliminarlo(s).
diff --git a/translations/es-ES/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md b/translations/es-ES/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md
index b364a65fcc..94fb0fdd58 100644
--- a/translations/es-ES/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md
+++ b/translations/es-ES/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md
@@ -21,6 +21,7 @@ The exported information includes:
- Whether the membership is public or private
- Whether the user is an organization owner or member
- Datetime of the user's last activity (for a full list of relevant activity, see "[Managing dormant users](/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users)")
+- The user's SAML NameID, if available
You can get member information directly from the {% data variables.product.product_name %} user interface, or using APIs. This article explains how to obtain member information from within {% data variables.product.product_name %}.
diff --git a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md
index c7a7bbb207..c6b10c386e 100644
--- a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md
+++ b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md
@@ -27,29 +27,25 @@ Después de que habilites SCIM, las siguientes características de aprovisionami
| Subir Actualizaciones de Perfil | Cuando actualizas el perfil de un usuario en Okta, Okta actualizará los metadatos de la membrecía de dicho usuario de tu organización en {% data variables.product.product_location %}. |
| Reactivar Usuarios | Cuando reactivas a un usuario en Okta, Okta enviará una invitación por correo electrónico al usuario para que vuelva a unirse a tu organización de {% data variables.product.product_location %}. |
-## Prerrequisitos
-
-{% data reusables.saml.use-classic-ui %}
+Alternatively, you can configure SAML SSO for an enterprise using Okta. SCIM for enterprise accounts is only available with Enterprise Managed Users. For more information, see "[Configuring SAML single sign-on for your enterprise using Okta](/admin/identity-and-access-management/managing-iam-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise-using-okta)" and "[Configuring SCIM provisioning for Enterprise Managed Users with Okta](/admin/identity-and-access-management/managing-iam-with-enterprise-managed-users/configuring-scim-provisioning-for-enterprise-managed-users-with-okta)."
## Agregar la aplicación {% data variables.product.prodname_ghe_cloud %} en Okta
-{% data reusables.saml.okta-dashboard-click-applications %}
-{% data reusables.saml.add-okta-application %}
-{% data reusables.saml.search-ghec-okta %}
-4. Da clic en **Agregar** a la derecha de "Github Enterprise Cloud - Organization". 
-
-5. En el campo **Organización de GitHub**, teclea el nombre de tu organización de {% data variables.product.product_location %}. Por ejemplo, si la URL de de tu organizaciòn es https://github.com/octo-org, el nombre de organizaciòn serìa `octo-org`. 
-
-6. Haz clic en **Done** (listo).
+{% data reusables.saml.okta-sign-into-your-account %}
+1. Navigate to the [Github Enterprise Cloud - Organization](https://www.okta.com/integrations/github-enterprise-cloud-organization) application in the Okta Integration Network and click **Add Integration**.
+1. Opcionalmente, a la derecha de la "Etiqueta de aplicación", teclea un nombre descriptivo para la aplicación.
+1. En el campo **Organización de GitHub**, teclea el nombre de tu organización de {% data variables.product.product_location %}. Por ejemplo, si la URL de de tu organizaciòn es https://github.com/octo-org, el nombre de organizaciòn serìa `octo-org`.
+1. Haz clic en **Done** (listo).
## Habilitar y probar el SSO de SAML
+{% data reusables.saml.okta-sign-into-your-account %}
{% data reusables.saml.okta-dashboard-click-applications %}
{% data reusables.saml.okta-applications-click-ghec-application-label %}
{% data reusables.saml.assign-yourself-to-okta %}
{% data reusables.saml.okta-sign-on-tab %}
{% data reusables.saml.okta-view-setup-instructions %}
-6. Habilita y prueba el SSO de SAML en {% data variables.product.prodname_dotcom %} utilizando la URL de registro, URL del emisor, y certificados pùblicos de la guìa "Còmo configurar SAML 2.0". Para obtener más información, consulta "[Habilitar y probar el inicio de sesión único para tu organización](/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization)".
+1. Habilita y prueba el SSO de SAML en {% data variables.product.prodname_dotcom %} utilizando la URL de registro, URL del emisor, y certificados pùblicos de la guìa "Còmo configurar SAML 2.0". Para obtener más información, consulta "[Habilitar y probar el inicio de sesión único para tu organización](/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization#enabling-and-testing-saml-single-sign-on-for-your-organization)".
## Configurar el aprovisionamiento de acceso con SCIM en Okta
@@ -58,18 +54,17 @@ Después de que habilites SCIM, las siguientes características de aprovisionami
{% data reusables.saml.okta-provisioning-tab %}
{% data reusables.saml.okta-configure-api-integration %}
{% data reusables.saml.okta-enable-api-integration %}
+1. Da clic en **Autenticar con Github Enterprise Cloud - Ortanizaction**.
+1. A la derecha del nombre de tu organizaciòn, da clic en **Otorgar**.
-
-6. Da clic en **Autenticar con Github Enterprise Cloud - Ortanizaction**. 
-
-7. A la derecha del nombre de tu organizaciòn, da clic en **Otorgar**. 
+ 
{% note %}
**Nota**: si no ves tu organización en la lista, dirígete a `https://github.com/orgs/ORGANIZATION-NAME/sso` en tu buscador y autentícate con ella a través del SSO de SAML utilizando tu cuenta de administrador en el IdP. Por ejemplo, si tu nombre de organización es `octo-org`, La URL sería `https://github.com/orgs/octo-org/sso`. Para obtener más información, consulta la sección "[Acerca de la autenticación con el inicio de sesión único de SAML](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)".
{% endnote %}
-1. Da clic en **Autorizar OktaOAN**. 
+1. Da clic en **Autorizar OktaOAN**.
{% data reusables.saml.okta-save-provisioning %}
{% data reusables.saml.okta-edit-provisioning %}
diff --git a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md
index 2dbbc8c110..b88a9cc42a 100644
--- a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md
+++ b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md
@@ -22,7 +22,7 @@ Puedes encontrar los detalles de implementación de SAML y de SCIM para tu IdP e
- PingOne [SAML](https://support.pingidentity.com/s/marketplace-integration/a7i1W0000004ID3QAM/github-connector)
- Shibboleth [SAML](https://wiki.shibboleth.net/confluence/display/IDP30/Home)
-You can access your organization's service provider metadata at the following URL, replacing ORGANIZATION with your organization's username.
+Puedes acceder a los metadatos del proveedor de servicios de tu organización en la siguiente URL, reemplazando ORGANIZATION con tu nombre de usuario de la organización.
```
http(s)://github.com/orgs/ORGANIZATION/saml/metadata.xml
diff --git a/translations/es-ES/content/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll.md b/translations/es-ES/content/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll.md
index 55eeae9094..76e1a1b25a 100644
--- a/translations/es-ES/content/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll.md
+++ b/translations/es-ES/content/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll.md
@@ -68,7 +68,9 @@ Antes de que puedas usar Jekyll para crear un sitio de {% data variables.product
Si decides publicar tu sitio desde la rama `gh-pages`, crea y controla la rama `gh-pages`.
```shell
$ git checkout --orphan gh-pages
- # Creates a new branch, with no history or contents, called gh-pages and switches to the gh-pages branch
+ # Creates a new branch, with no history or contents, called gh-pages, and switches to the gh-pages branch
+ $ git rm -rf
+ # Removes the contents from your default branch from the working directory
```
1. Para crear un sitio nuevo de Jekyll, utiliza el comando `jekyll new`:
```shell
diff --git a/translations/es-ES/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks.md b/translations/es-ES/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks.md
index a578538671..1898e1b442 100644
--- a/translations/es-ES/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks.md
+++ b/translations/es-ES/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks.md
@@ -34,7 +34,7 @@ There are two types of status checks on {% data variables.product.product_name %
_Checks_ are different from _statuses_ in that they provide line annotations, more detailed messaging, and are only available for use with {% data variables.product.prodname_github_apps %}.
-Organization owners and users with push access to a repository can create checks and statuses with {% data variables.product.product_name %}'s API. For more information, see "[Checks](/rest/reference/checks)" and "[Statuses](/rest/reference/repos#statuses)."
+Organization owners and users with push access to a repository can create checks and statuses with {% data variables.product.product_name %}'s API. For more information, see "[Checks](/rest/reference/checks)" and "[Statuses](/rest/reference/commits#commit-statuses)."
## Checks
diff --git a/translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/using-a-merge-queue.md b/translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/using-a-merge-queue.md
index 6f1a34c11c..1ba695a53f 100644
--- a/translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/using-a-merge-queue.md
+++ b/translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/using-a-merge-queue.md
@@ -17,7 +17,7 @@ shortTitle: Use merge queue
{% data reusables.pull_requests.merge-queue-overview %}
-The merge queue creates temporary preparatory branches to validate pull requests against the latest version of the base branch. To ensure that {% data variables.product.prodname_dotcom %} validates these preparatory branches, you may need to update your CI configuration to trigger builds on branch names starting with `gh/readonly/queue/{base_branch}`.
+The merge queue creates temporary preparatory branches to validate pull requests against the latest version of the base branch. To ensure that {% data variables.product.prodname_dotcom %} validates these preparatory branches, you may need to update your CI configuration to trigger builds on branch names starting with `gh-readonly-queue/{base_branch}`.
For example, with {% data variables.product.prodname_actions %}, adding the following trigger to a workflow will cause the workflow to run when any push is made to a merge queue preparatory branch that targets `main`.
@@ -25,7 +25,8 @@ For example, with {% data variables.product.prodname_actions %}, adding the foll
on:
push:
branches:
- - gh/readonly/queue/main/**
+ - main
+ - gh-readonly-queue/main/**
```
{% data reusables.pull_requests.merge-queue-merging-method %}
diff --git a/translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches.md b/translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches.md
index 08f567b7b3..3cf81d1b7f 100644
--- a/translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches.md
+++ b/translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches.md
@@ -83,7 +83,7 @@ Optionally, you can choose to require reviews from code owners. If you do, any p
Required status checks ensure that all required CI tests are passing before collaborators can make changes to a protected branch. Required status checks can be checks or statuses. For more information, see "[About status checks](/github/collaborating-with-issues-and-pull-requests/about-status-checks)."
-Before you can enable required status checks, you must configure the repository to use the status API. For more information, see "[Repositories](/rest/reference/repos#statuses)" in the REST documentation.
+Before you can enable required status checks, you must configure the repository to use the status API. For more information, see "[Repositories](/rest/reference/commits#commit-statuses)" in the REST documentation.
After enabling required status checks, all required status checks must pass before collaborators can merge changes into the protected branch. After all required status checks pass, any commits must either be pushed to another branch and then merged or pushed directly to the protected branch.
diff --git a/translations/es-ES/content/repositories/index.md b/translations/es-ES/content/repositories/index.md
index 2d4e83500e..0118de7347 100644
--- a/translations/es-ES/content/repositories/index.md
+++ b/translations/es-ES/content/repositories/index.md
@@ -1,6 +1,27 @@
---
title: Repositorios
intro: Aprende a utilizar y administrar los repositorios que te permiten almacenar y colaborar con el código de tu proyecto.
+introLinks:
+ quickstart: /get-started/quickstart/create-a-repo
+ overview: /repositories/creating-and-managing-repositories/about-repositories
+featuredLinks:
+ guides:
+ - /repositories/creating-and-managing-repositories/cloning-a-repository
+ - /repositories/creating-and-managing-repositories/restoring-a-deleted-repository
+ - /repositories/working-with-files/managing-files/adding-a-file-to-a-repository
+ - /repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository
+ popular:
+ - /repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches
+ - /repositories/releasing-projects-on-github/about-releases
+ - /repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes
+ - /repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
+ guideCards:
+ - /repositories/creating-and-managing-repositories/deleting-a-repository
+ - /repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/managing-a-branch-protection-rule
+ - /repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility
+changelog:
+ label: repos
+layout: product-landing
redirect_from:
- /github/creating-cloning-and-archiving-repositories
versions:
diff --git a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md
index 00b88f5164..a1638c32d0 100644
--- a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md
+++ b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md
@@ -45,7 +45,10 @@ Puedes inhabilitar todos los flujos de trabajo para un repositorio o configurar
{% data reusables.repositories.navigate-to-repo %}
{% data reusables.repositories.sidebar-settings %}
{% data reusables.repositories.settings-sidebar-actions %}
-1. Debajo de **Permisos de las acciones**, selecciona una opción. 
+1. Debajo de **Permisos de las acciones**, selecciona una opción.
+
+ 
+
1. Haz clic en **Save ** (guardar).
## Permitir que se ejecuten acciones específicas
@@ -56,12 +59,14 @@ Puedes inhabilitar todos los flujos de trabajo para un repositorio o configurar
{% data reusables.repositories.sidebar-settings %}
{% data reusables.repositories.settings-sidebar-actions %}
1. Debajo de **Permisos de las acciones**, selecciona **Permitir acciones seleccionadas** y agrega tus acciones requeridas a la lista.
+
{%- ifversion ghes > 3.0 %}

{%- else %}

{%- endif %}
-2. Haz clic en **Save ** (guardar).
+
+1. Haz clic en **Save ** (guardar).
{% ifversion fpt or ghec %}
## Configurar las aprobaciones requeridas para los flujos de trabajo desde las bifurcaciones pùblicas
@@ -103,7 +108,10 @@ También pueden configurarse los permisos predeterminados en los ajustes de la o
{% data reusables.repositories.navigate-to-repo %}
{% data reusables.repositories.sidebar-settings %}
{% data reusables.repositories.settings-sidebar-actions %}
-1. Debajo de **Permisos del flujo de trabajo**, elige si quieres que el `GITHUB_TOKEN` tenga permisos de lectura y escritura para todos los alcances o solo acceso de lectura para el alcance `contents`. 
+1. Debajo de **Permisos del flujo de trabajo**, elige si quieres que el `GITHUB_TOKEN` tenga permisos de lectura y escritura para todos los alcances o solo acceso de lectura para el alcance `contents`.
+
+ 
+
1. Da clic en **Guardar** para aplicar la configuración.
{% endif %}
@@ -112,15 +120,18 @@ También pueden configurarse los permisos predeterminados en los ajustes de la o
Los miembros de tu empresa pueden utilizar repositorios internos para trabajar en proyectos sin compartir información públicamente. Para obtener más información, consulta la sección "[Acerca de los repositorios](/repositories/creating-and-managing-repositories/about-repositories#about-internal-repositories)".
-Para configurar si se puede acceder desde un repositorio externo a los flujos de trabajo de un repositorio interno:
+Puedes configurar si se puede acceder a{% if internal-actions%}las acciones y {% endif %}flujos de trabajo de un repositorio interno desde fuera de este.{% if internal-actions %} Para obtener más información, consulta la sección "[Compartir acciones y flujos de trabajo con tu empresa](/actions/creating-actions/sharing-actions-and-workflows-with-your-enterprise)".{% endif %}
1. En {% data variables.product.prodname_dotcom %}, navega hasta la página principal del repositorio interno.
1. Debajo de tu nombre de repositorio, haz clic en {% octicon "gear" aria-label="The gear icon" %}**Configuración**.
{% data reusables.repositories.settings-sidebar-actions %}
-1. Debajo de **Acceso**, elige uno de los ajustes de acceso: 
- * **No accesible** - Los flujos de trabajo en otros repositorios no pueden utilizar flujos de trabajo en este repositorio.
- * **Accesible desde los repositorios en la '<organization name>' organización ** - Los flujos de trabajo en otros repositorios pueden utilizar los flujos de trabajo en este repositorio si son parte de la misma organización y su visibilidad es privada o interna.
- * **Accesible desde los repositorios en la '<enterprise name>' empresa ** - Los flujos de trabajo en otros repositorios pueden utilizar los flujos de trabajo en este repositorio si son parte de la misma empresa y su visibilidad es privada o interna.
+1. Debajo de **Acceso**, elige uno de los ajustes de acceso:
+
+ {% ifversion ghes > 3.4 or ghae-issue-6090 or ghec %}{% else %}{% endif %}
+
+ * **Sin acceso** - Los flujos de trabajo en otros repositorios no pueden acceder a este.
+ * **Con acceso desde los repositorios de la organización 'ORGANIZATION NAME'** - {% ifversion ghes > 3.4 or ghae-issue-6090 or ghec %}Los flujos de trabajo en otros repositorios que sean parte de la organización 'ORGANIZATION NAME' pueden acceder a las acciones y flujos de trabajo de este repositorio. Se permite el acceso solo desde los repositorios internos o privados.{% else %}Los flujos de trabajo en otros repositorios pueden utilizar flujos de trabajo en este si son parte de la misma organización y su visibilidad es privada o interna.{% endif %}
+ * **Con acceso desde los repositorios de la empresa 'ENTERPRISE NAME'** - {% ifversion ghes > 3.4 or ghae-issue-6090 or ghec %}Los flujos de trabajo en otros repositorios que son parte de la empresa 'ENTERPRISE NAME' pueden acceder a las acciones y flujos de trabajo de este repositorio. Se permite el acceso únicamente desde los repositorios internos o privados.{% else %}Los flujos de trabajo en otros repositorios pueden utilizar aquellos en este repositorio si son parte de la misma empresa y su visibilidad es privada o interna.{% endif %}
1. Da clic en **Guardar** para aplicar la configuración.
{% endif %}
diff --git a/translations/es-ES/content/repositories/releasing-projects-on-github/about-releases.md b/translations/es-ES/content/repositories/releasing-projects-on-github/about-releases.md
index b4e5fce59b..cb426cf5f7 100644
--- a/translations/es-ES/content/repositories/releasing-projects-on-github/about-releases.md
+++ b/translations/es-ES/content/repositories/releasing-projects-on-github/about-releases.md
@@ -19,9 +19,9 @@ topics:
---
## About releases
-{% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-4974 %}
+{% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-4974 %}

-{% elsif ghes > 3.3 or ghae-issue-4972 %}
+{% elsif ghae-issue-4972 %}

{% else %}

@@ -35,7 +35,7 @@ You can receive notifications when new releases are published in a repository wi
Anyone with read access to a repository can view and compare releases, but only people with write permissions to a repository can manage releases. For more information, see "[Managing releases in a repository](/github/administering-a-repository/managing-releases-in-a-repository)."
-{% ifversion fpt or ghec %}
+{% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-4974 %}
You can manually create release notes while managing a release. Alternatively, you can automatically generate release notes from a default template, or customize your own release notes template. For more information, see "[Automatically generated release notes](/repositories/releasing-projects-on-github/automatically-generated-release-notes)."
diff --git a/translations/es-ES/content/repositories/releasing-projects-on-github/automatically-generated-release-notes.md b/translations/es-ES/content/repositories/releasing-projects-on-github/automatically-generated-release-notes.md
index 94b19f5949..7b9ccee7b1 100644
--- a/translations/es-ES/content/repositories/releasing-projects-on-github/automatically-generated-release-notes.md
+++ b/translations/es-ES/content/repositories/releasing-projects-on-github/automatically-generated-release-notes.md
@@ -5,6 +5,8 @@ permissions: Repository collaborators and people with write access to a reposito
versions:
fpt: '*'
ghec: '*'
+ ghes: '>3.3'
+ ghae: issue-4974
topics:
- Repositories
shortTitle: Notas de lanzamiento automatizadas
diff --git a/translations/es-ES/content/repositories/releasing-projects-on-github/searching-a-repositorys-releases.md b/translations/es-ES/content/repositories/releasing-projects-on-github/searching-a-repositorys-releases.md
index 5d75c10341..f15c3d53a3 100644
--- a/translations/es-ES/content/repositories/releasing-projects-on-github/searching-a-repositorys-releases.md
+++ b/translations/es-ES/content/repositories/releasing-projects-on-github/searching-a-repositorys-releases.md
@@ -1,8 +1,8 @@
---
-title: Searching a repository's releases
-intro: 'You can use keywords, tags, and other qualifiers to search for particular releases in a repository.'
+title: Buscar los lanzamientos de un repositorio
+intro: 'Puedes utilizar palabras clave, etiquetas y otros calificadores para buscar lanzamientos particulares en un repositorio.'
permissions: Anyone with read access to a repository can search that repository's releases.
-shortTitle: Searching releases
+shortTitle: Buscar lanzamientos
versions:
fpt: '*'
ghec: '*'
@@ -12,11 +12,11 @@ topics:
- Repositories
---
-## Searching for releases in a repository
+## Buscar lanzamientos en un repositorio
{% data reusables.repositories.navigate-to-repo %}
{% data reusables.repositories.releases %}
-1. To search the repository's releases, in the search field at the top of the Releases page, type your query and press **Enter**. 
+1. Para buscar los lanzamientos del repositorio, en el campo de búsqueda de la parte superior de la página de lanzamientos, teclea tu consulta y presiona **Enter**. 
## Search syntax for searching releases in a repository
diff --git a/translations/es-ES/content/rest/guides/basics-of-authentication.md b/translations/es-ES/content/rest/guides/basics-of-authentication.md
index 6af5894f6e..7799c5bb6c 100644
--- a/translations/es-ES/content/rest/guides/basics-of-authentication.md
+++ b/translations/es-ES/content/rest/guides/basics-of-authentication.md
@@ -67,10 +67,10 @@ Posteriormente, pega este contenido en _views/index.erb_:
We're going to now talk to the GitHub API. Ready?
- Click here to begin!
+ ¡Haz clic aquí para comenzar!
- If that link doesn't work, remember to provide your own Client ID!
+ Si ese enlace no funciona, recuerda proporcionar tu propia ID de cliente!